about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-06-10 13:33:55 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-06-10 13:33:55 +0100
commit6f0ed472a024b590c79289eecd7fbfd7150afcba (patch)
treeec9066b3a3ac66f2a0dcd5d7d339ea3b39924178 /.emacs.d/lisp
parent181867ab5ac164bb8876d96327f12516124ee9e7 (diff)
downloaddotfiles-6f0ed472a024b590c79289eecd7fbfd7150afcba.tar.gz
Tweak modus-themes settings
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/init-ui.el7
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))