From 625b5d8aaec0f366b88a265cc4bd4e823bf7bb85 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 18 Jun 2017 22:52:34 +0200 Subject: Emacs: Try white-theme --- emacs/.emacs.d/init.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'emacs') 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. -- cgit 1.4.1