summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.org15
-rw-r--r--nix/.config/nixpkgs/emacs.nix2
2 files changed, 16 insertions, 1 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.
diff --git a/nix/.config/nixpkgs/emacs.nix b/nix/.config/nixpkgs/emacs.nix
index 1e439b6..6740719 100644
--- a/nix/.config/nixpkgs/emacs.nix
+++ b/nix/.config/nixpkgs/emacs.nix
@@ -91,7 +91,6 @@ in
     exec-path-from-shell
     expand-region
     eyebrowse
-    eziam-theme
     flow-minor-mode
     flycheck
     flycheck-flow
@@ -147,6 +146,7 @@ in
     visual-regexp
     volatile-highlights
     web-mode
+    white-theme
     wgrep-ag
     which-key
     yaml-mode