diff options
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-ui.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el index 9232406..a3a75a0 100644 --- a/.emacs.d/lisp/init-ui.el +++ b/.emacs.d/lisp/init-ui.el @@ -48,10 +48,13 @@ (use-package modus-themes :init - ;; (setq modus-themes-syntax '(alt-syntax green-strings yellow-comments)) - (setq modus-themes-syntax '(green-strings yellow-comments) + (setq modus-themes-syntax + (if (member (format-time-string "%a") '("Mon" "Fri")) + '(alt-syntax green-strings yellow-comments) + '(green-strings-yellow-comments)) modus-themes-paren-match '(bold intense underline) modus-themes-region '(accented) + modus-themes-hl-line '(underline) modus-themes-lang-checkers '(text-also background)) (load-theme 'modus-vivendi t)) |