summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2017-06-18 22:52:34 +0200
committerAlan Pearce2017-06-18 22:55:43 +0200
commit625b5d8aaec0f366b88a265cc4bd4e823bf7bb85 (patch)
tree002d13ac8a28592190a1205c05c5169713e37a13 /emacs
parent32f0ff25f19c4dd2fae22f4fcb01286beb098808 (diff)
downloaddotfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.tar.lz
dotfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.tar.zst
dotfiles-625b5d8aaec0f366b88a265cc4bd4e823bf7bb85.zip
Emacs: Try white-theme
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org15
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 287502b..ee56d8f 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.