summary refs log tree commit diff stats
path: root/user
diff options
context:
space:
mode:
authorAlan Pearce2020-02-18 16:04:52 +0100
committerAlan Pearce2020-02-18 16:04:52 +0100
commit707aa94bb0b98822ec859faf824b0fda34771c91 (patch)
treee262fdb533f1f54faab96b606fe23bd5aa777c44 /user
parent9e66b67149a19eb204fe9f3bb6e8f5981e0d6190 (diff)
downloadnixfiles-707aa94bb0b98822ec859faf824b0fda34771c91.tar.lz
nixfiles-707aa94bb0b98822ec859faf824b0fda34771c91.tar.zst
nixfiles-707aa94bb0b98822ec859faf824b0fda34771c91.zip
Emacs: ensure theme package is loaded
Diffstat (limited to 'user')
-rw-r--r--user/emacs/.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/user/emacs/.emacs.d/init.el b/user/emacs/.emacs.d/init.el
index 6d84bd0f..8875ef54 100644
--- a/user/emacs/.emacs.d/init.el
+++ b/user/emacs/.emacs.d/init.el
@@ -64,7 +64,8 @@
 
 (when (or (daemonp)
            window-system)
-  (load-theme 'almost-mono-white t)
+  (use-package almost-mono-themes
+    :config (load-theme 'almost-mono-white t))
   (if (eq window-system 'x)
       (setq-default line-spacing 0.2))
   (setq frame-background-mode 'light)