diff options
-rw-r--r-- | emacs/.emacs.d/init.org | 11 | ||||
-rw-r--r-- | nix/.config/nixpkgs/emacs.nix | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index bc6cb69..8a383fc 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -195,6 +195,17 @@ White-theme. Sounds like a good idea. '(font-lock-string-face ((t (:slant normal))))))) #+END_SRC +Base16 theming allows me have a consistent style between applications +quite easily. + +#+BEGIN_SRC emacs-lisp +(use-package base16-theme + :if (or window-system + (daemon-p)) + :config (progn + (load-theme 'base16-mexico-light t))) +#+END_SRC + Highlighting quasi-quoted expressions in lisps is quite useful, but I don't need it all the time. I'll keep it around for a while so that I can enable it if needed. diff --git a/nix/.config/nixpkgs/emacs.nix b/nix/.config/nixpkgs/emacs.nix index 6e53368..02b7496 100644 --- a/nix/.config/nixpkgs/emacs.nix +++ b/nix/.config/nixpkgs/emacs.nix @@ -59,6 +59,7 @@ in async auto-compile avy + base16-theme bbdb beginend cider |