summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-03 19:37:55 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-03 19:37:55 -0800
commit04a0e27ce661e3919d11886f2fbf6a10970e5af5 (patch)
tree67c0901a355783526ae5a4dd50e4f4f34d0b00c6
parentauthinfo: add github creds (diff)
downloademacs.d-04a0e27ce661e3919d11886f2fbf6a10970e5af5.tar.gz
themes: add modus again
Diffstat (limited to '')
-rw-r--r--emacs/custom/fcuny-ui.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el
index 9b255f6..8576fb4 100644
--- a/emacs/custom/fcuny-ui.el
+++ b/emacs/custom/fcuny-ui.el
@@ -42,6 +42,14 @@
     ;; rendered correctly 😇 😀 and 🤢
     (set-fontset-font t 'symbol "Noto Color Emoji" nil 'append)))
 
+(use-package modus-themes
+  :ensure t
+  :init
+  ;; Load the theme files before enabling a theme (else you get an error).
+  (modus-themes-load-themes)
+  :config
+  (modus-themes-load-operandi))
+
 (require 'time)
 (setq display-time-24hr-format t)
 (setq display-time-day-and-date t)
@@ -126,7 +134,4 @@
 
 (add-hook 'help-mode-hook #'visual-line-mode)
 
-;; Better than the default.
-(load-theme 'tango-dark t)
-
 (provide 'fcuny-ui)