.emacs.d/pkg/hl-todo.el

13 lines
377 B
EmacsLisp
Raw Normal View History

;; Highlight keywords in comments and strings.
;; https://github.com/tarsius/hl-todo
(use-package hl-todo
:ensure t
:config
(setq hl-todo-keyword-faces
'(("FIXME" . "#f7768e")
("HACK" . "#7aa2f7")
("NOTE" . "#e0af68")
("TODO" . "#bb9af7")))
(add-hook 'prog-mode-hook #'hl-todo-mode)
(add-hook 'text-mode-hook #'hl-todo-mode))