all repos — nixfiles @ ceeb734d82fda4bd7430f9c263a33ebd89162d39

System and user configuration, managed by nix and home-manager

Emacs: Install base16 theme package
Alan Pearce alan@alanpearce.eu
Sun, 16 Jul 2017 12:51:17 +0200
commit

ceeb734d82fda4bd7430f9c263a33ebd89162d39

parent

7b67188b59125f580579d7d62a27448337c760d7

2 files changed, 12 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -195,6 +195,17 @@ '(git-gutter-fr:deleted ((t (:foreground "#b8b8b8"))))                                     '(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.
M nix/.config/nixpkgs/emacs.nixnix/.config/nixpkgs/emacs.nix
@@ -59,6 +59,7 @@ ag     async
     auto-compile
     avy
+    base16-theme
     bbdb
     beginend
     cider