This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(deftheme ForestBerry | |
"A dark purple theme converted from a Neovim Lush theme.") | |
(let* ((class '((class color) (min-colors 89))) | |
(fg1 "#c7c7c7") ; theme_foreground | |
(bg1 "#0a0411") ; theme_background | |
(black "#060210") | |
(black-light "#160f2d") | |
(red "#e85872") | |
(red-light "#c75161") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-package package | |
:config | |
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
(package-initialize)) | |
(use-package sly | |
:ensure t) | |
(use-package company | |
:ensure t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Clear this if not a 64bit build | |
_BUILD_64=1 | |
# Set GTK Version to 2 or 3 | |
_GTK_VERSION=2 | |
# Standard build options for Pale Moon | |
ac_add_options --enable-application=palemoon | |
ac_add_options --enable-optimize="-O2 -w" | |
ac_add_options --enable-default-toolkit=cairo-gtk$_GTK_VERSION |