doomemacs/modules/ui/hl-todo
Henrik Lissner c5b561f796
Fix args-out-of-range error from hl-todo
Only seen in scala-mode so far.
2020-06-01 05:51:26 -04:00
..
config.el Fix args-out-of-range error from hl-todo 2020-06-01 05:51:26 -04:00
packages.el Bump :ui 2020-04-29 23:48:42 -04:00
README.org Add READMEs for several modules 2017-08-21 21:51:29 +02:00

:ui hl-todo

This module adds syntax highlighting for TODO/FIXME/NOTE tags in programming major-modes.

What keywords are highlighted (and their color) can be customized through hl-todo-keyword-faces.

;; the default
(setq hl-todo-keyword-faces
      `(("TODO"  . ,(face-foreground 'warning))
        ("FIXME" . ,(face-foreground 'error))
        ("NOTE"  . ,(face-foreground 'success))))