summaryrefslogtreecommitdiff
path: root/emacs/custom/fcuny-ui.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/custom/fcuny-ui.el')
-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)