diff options
author | Alan Pearce | 2017-06-18 22:52:34 +0200 |
---|---|---|
committer | Alan Pearce | 2017-06-18 22:55:43 +0200 |
commit | 625b5d8aaec0f366b88a265cc4bd4e823bf7bb85 (patch) | |
tree | 002d13ac8a28592190a1205c05c5169713e37a13 /emacs/.emacs.d | |
parent | 32f0ff25f19c4dd2fae22f4fcb01286beb098808 (diff) | |
download | nixfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.tar.lz nixfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.tar.zst nixfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.zip |
Emacs: Try white-theme
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/init.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 287502b0..ee56d8f4 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -163,6 +163,7 @@ white because most other application backgrounds are that colour. #+BEGIN_SRC emacs-lisp (use-package eziam-light-theme :ensure eziam-theme + :disabled t :if (or window-system (daemonp)) :defines (eziam-scale-headings) @@ -179,6 +180,20 @@ white because most other application backgrounds are that colour. '(git-gutter-fr:deleted ((t (:foreground "#96a4ab"))))))) #+END_SRC +White-theme. Sounds like a good idea. + +#+BEGIN_SRC emacs-lisp +(use-package white-theme + :if (or window-system + (daemonp)) + :config (progn + (load-theme 'white-theme t) + (custom-theme-set-faces 'user + '(git-gutter-fr:added ((t (:foreground "#96a4ab")))) + '(git-gutter-fr:modified ((t (:foreground "#96a4ab")))) + '(git-gutter-fr:deleted ((t (:foreground "#96a4ab"))))))) +#+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. |