diff options
author | Franck Cuny <franck@fcuny.net> | 2024-04-23 13:37:09 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-04-23 13:41:01 -0700 |
commit | 844b26255f975d07d708713a89cccd4f7376ae48 (patch) | |
tree | 5137e882c74a146a4f49113acc0a203e951de6c6 | |
parent | use aspell for spell checking (diff) | |
download | emacs.d-844b26255f975d07d708713a89cccd4f7376ae48.tar.gz |
set a background color for comments
Change-Id: I286f8d151eebf3c809da5ea6716c0b46413df21f
-rw-r--r-- | config/init-theme.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/init-theme.el b/config/init-theme.el index 9605ea0..275864a 100644 --- a/config/init-theme.el +++ b/config/init-theme.el @@ -61,6 +61,11 @@ :config (load-theme 'modus-operandi t)) +;; use a different background color for comments +(custom-set-faces + `(font-lock-comment-face ((t (:background "#eeefff")))) + `(font-lock-doc-face ((t (:background "#eeefff"))))) + (provide 'init-theme) ;;; init-theme.el ends here |