fix(emacs): add hl-todo
configuration
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
577c1c6533
commit
2345d195ff
2 changed files with 24 additions and 0 deletions
|
@ -161,6 +161,27 @@
|
|||
(keymap-global-set "C-c r r" #'consult-ripgrep)
|
||||
(keymap-global-set "C-c r g" #'consult-grep)
|
||||
|
||||
;; hl-todo
|
||||
(custom-set-faces
|
||||
'(hl-todo ((t (:inherit nano-salient-i)))))
|
||||
(setq hl-todo-keyword-faces
|
||||
'(("HOLD" . "#ffffff")
|
||||
("TODO" . "#ffffff")
|
||||
("NEXT" . "#ffffff")
|
||||
("THEM" . "#ffffff")
|
||||
("PROG" . "#ffffff")
|
||||
("OKAY" . "#ffffff")
|
||||
("DONT" . "#ffffff")
|
||||
("FAIL" . "#ffffff")
|
||||
("DONE" . "#ffffff")
|
||||
("NOTE" . "#ffffff")
|
||||
("MAYBE" . "#ffffff")
|
||||
("KLUDGE" . "#ffffff")
|
||||
("HACK" . "#ffffff")
|
||||
("TEMP" . "#ffffff")
|
||||
("FIXME" . "#ffffff")
|
||||
("XXXX*" . "#ffffff")))
|
||||
|
||||
;; Grading
|
||||
(defun grade-next (&optional inc)
|
||||
"Go to the next homework by INC to grade."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue