diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-03 19:37:55 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-03 19:37:55 -0800 |
commit | 04a0e27ce661e3919d11886f2fbf6a10970e5af5 (patch) | |
tree | 67c0901a355783526ae5a4dd50e4f4f34d0b00c6 /emacs | |
parent | authinfo: add github creds (diff) | |
download | emacs.d-04a0e27ce661e3919d11886f2fbf6a10970e5af5.tar.gz |
themes: add modus again
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 11 |
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) |