summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom')
-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)