diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init.org | 11 |
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. |