diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-11-29 16:17:16 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-11-29 16:17:16 +0000 |
commit | e4a11628162bb550322dff48701bb03e14f01cb7 (patch) | |
tree | 321230ff7b0947cd718cfc81c4377cc6b0712815 | |
parent | db5ca9400c1973f9cba23503ed1824770c40e5f9 (diff) | |
download | dotfiles-e4a11628162bb550322dff48701bb03e14f01cb7.tar.gz |
Undo modus-themes clojure font-locking change
-rw-r--r-- | .emacs.d/lisp/init-ui.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el index 73bb74d..b5424e1 100644 --- a/.emacs.d/lisp/init-ui.el +++ b/.emacs.d/lisp/init-ui.el @@ -92,7 +92,9 @@ `(flycheck-fringe-info ((t :foreground "white" :background "RoyalBlue3"))) `(cider-debug-code-overlay-face ((t :background "gray45"))) `(alt-font-lock-keyword-face ((t :foreground "LightSkyBlue" :weight bold))) - `(alt-hl-line-face ((t :underline "gray50" :weight bold)))) + `(alt-hl-line-face ((t :underline "gray50" :weight bold))) + ;; this is the default, but for some reason modus-themes started overriding it + `(clojure-keyword-face ((t :inherit font-lock-constant-face)))) (setq hl-todo-keyword-faces '(("TODO" . "red3") |