From e6d5aa3472023945b5521a509fb96cbbf5932d7a Mon Sep 17 00:00:00 2001 From: James Blair Date: Mon, 30 Oct 2023 16:12:37 +1300 Subject: [PATCH] Override color for comments in doom theme. --- doom/config.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doom/config.el b/doom/config.el index 7dc76bb..0a24ce5 100644 --- a/doom/config.el +++ b/doom/config.el @@ -113,3 +113,7 @@ '((:results . "silent") ; (:session . "default") ; The default tmux session to send code to (:socket . nil))) ; The default tmux socket to communicate with + +;; Fix comment colors +(set-face-foreground 'font-lock-string-face "green") +(set-face-foreground 'font-lock-comment-face "green")