Add READMEs for several modules

This commit is contained in:
Henrik Lissner 2017-08-21 20:12:25 +02:00
parent cbabf6849c
commit 4ff80cf416
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
10 changed files with 160 additions and 16 deletions

View file

@ -0,0 +1,13 @@
#+TITLE: :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~.
#+BEGIN_SRC emacs-lisp
;; the default
(setq hl-todo-keyword-faces
`(("TODO" . ,(face-foreground 'warning))
("FIXME" . ,(face-foreground 'error))
("NOTE" . ,(face-foreground 'success))))
#+END_SRC