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

8 lines
217 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
(add-hook 'prog-mode-hook #'hl-todo-mode)
(add-hook 'text-mode-hook #'hl-todo-mode))