summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-09-29 06:49:49 -0700
committerFranck Cuny <franck@fcuny.net>2021-09-29 06:49:49 -0700
commit02dc36fff82117489b9dca4b9305f25a9a31e2ce (patch)
tree944e8279a07ed41054b6dc1cdad51aef5a67ab6b
parentemacs: set variable only if it exists (diff)
downloademacs.d-02dc36fff82117489b9dca4b9305f25a9a31e2ce.tar.gz
emacs: adding modus-themes (again)
-rw-r--r--emacs/custom/fcuny-ui.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el
index 40ff5b4..07ab046 100644
--- a/emacs/custom/fcuny-ui.el
+++ b/emacs/custom/fcuny-ui.el
@@ -18,6 +18,24 @@
(use-package diminish
:ensure t)
+(use-package modus-themes
+ :ensure t
+ :init
+ (setq modus-themes-italic-constructs t
+ modus-themes-bold-constructs t
+ modus-themes-lang-checkers '(text-also background)
+ modus-themes-mode-line '(accented)
+ modus-themes-diffs '(desaturated)
+ modus-themes-intense-hl-line t
+ modus-themes-paren-match '(intense)
+ modus-themes-syntax '(yellow-comments green-strings faint)
+ modus-themes-hl-line '(intense)
+ modus-themes-region '(bg-only no-extend))
+ ;; Load the theme files before enabling a theme (else you get an error).
+ (modus-themes-load-themes)
+ :config
+ (modus-themes-load-operandi))
+
(use-package frame
:config
(blink-cursor-mode -1)