about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-08-13 11:30:26 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-08-13 11:30:26 +0100
commite79e0babf8633f0b68ad51dbbe1be560a4b01f9e (patch)
treed7c097e389da236af83ac0fe60c57cd36d6eae73 /.emacs.d
parent7e606d541c15dbf5e17d961c1510b10fb628fba9 (diff)
downloaddotfiles-e79e0babf8633f0b68ad51dbbe1be560a4b01f9e.tar.gz
Change hl-todo colours
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-ui.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el
index f08623e..90352be 100644
--- a/.emacs.d/lisp/init-ui.el
+++ b/.emacs.d/lisp/init-ui.el
@@ -112,17 +112,17 @@
         ("C-c c t i" . hl-todo-insert))
   :custom
   (hl-todo-keyword-faces
-   '(("TODO"   . "red")
+   '(("TODO"   . "red3")
      ("djm"    . "green")
-     ("FIXME"  . "red")
+     ("FIXME"  . "red3")
      ("DEBUG"  . "#A020F0")
      ("GOTCHA" . "#FF4500")
      ("HACK" . "#FF4500")
      ("STUB"   . "#1E90FF")
-     ("FAIL"   . "red")
+     ("FAIL"   . "red3")
      ("NOTE"   . "DarkOrange2")
      ("DEPRECATED" . "yellow")))
-  :config
+  :init
   (global-hl-todo-mode 1))
 
 (use-package rainbow-delimiters