From 02dc36fff82117489b9dca4b9305f25a9a31e2ce Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 29 Sep 2021 06:49:49 -0700 Subject: emacs: adding modus-themes (again) --- emacs/custom/fcuny-ui.el | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'emacs') 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) -- cgit 1.4.1