summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-07-16 12:51:17 +0200
committerAlan Pearce2017-07-16 12:51:17 +0200
commitceeb734d82fda4bd7430f9c263a33ebd89162d39 (patch)
tree7b38e7189a81836d4aaead64ec844862d260bf11 /emacs
parent7b67188b59125f580579d7d62a27448337c760d7 (diff)
downloaddotfiles-ceeb734d82fda4bd7430f9c263a33ebd89162d39.tar.lz
dotfiles-ceeb734d82fda4bd7430f9c263a33ebd89162d39.tar.zst
dotfiles-ceeb734d82fda4bd7430f9c263a33ebd89162d39.zip
Emacs: Install base16 theme package
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org11
1 files changed, 11 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.