diff options
author | Franck Cuny <franck@fcuny.net> | 2021-09-29 06:49:49 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-09-29 06:49:49 -0700 |
commit | 02dc36fff82117489b9dca4b9305f25a9a31e2ce (patch) | |
tree | 944e8279a07ed41054b6dc1cdad51aef5a67ab6b | |
parent | emacs: set variable only if it exists (diff) | |
download | emacs.d-02dc36fff82117489b9dca4b9305f25a9a31e2ce.tar.gz |
emacs: adding modus-themes (again)
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 18 |
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) |