hl-todo colours

This commit is contained in:
David Morgan 2022-07-27 14:06:53 +01:00
parent 01ecd96aa7
commit a08cf4ee44
1 changed files with 13 additions and 0 deletions

View File

@ -102,6 +102,7 @@
:config (which-key-mode +1))
(use-package hl-todo
:after modus-themes
:bind
(:map hl-todo-mode-map
("C-c c t p" . hl-todo-previous)
@ -109,6 +110,18 @@
("C-c c t o" . hl-todo-occur)
("C-c c t r" . hl-todo-rgrep)
("C-c c t i" . hl-todo-insert))
:custom
(hl-todo-keyword-faces
'(("TODO" . "red")
("djm" . "green")
("FIXME" . "red")
("DEBUG" . "#A020F0")
("GOTCHA" . "#FF4500")
("HACK" . "#FF4500")
("STUB" . "#1E90FF")
("FAIL" . "red")
("NOTE" . "DarkOrange2")
("DEPRECATED" . "yellow")))
:config
(global-hl-todo-mode 1))