Skip to content

Instantly share code, notes, and snippets.

View AndreiSva's full-sized avatar
🇨🇦

Andrei AndreiSva

🇨🇦
View GitHub Profile
(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")
(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
@AndreiSva
AndreiSva / .mozconfig
Created July 31, 2021 23:52
the default mozconfig file for compiling palemoon from source
# 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