diff options
-rw-r--r-- | Emacs.org | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -211,6 +211,19 @@ | |||
211 | 211 | ||
212 | #+end_src | 212 | #+end_src |
213 | 213 | ||
214 | ** | ||
215 | #+begin_src emacs-lisp | ||
216 | |||
217 | (use-package hl-todo | ||
218 | :init | ||
219 | (setq hl-todo-keyword-faces | ||
220 | '(("TODO" . "#FF0000") | ||
221 | ("FIXME" . "#FF0000") | ||
222 | ("DEBUG" . "#A020F0"))) | ||
223 | :config | ||
224 | (global-hl-todo-mode 1)) | ||
225 | |||
226 | #+end_src | ||
214 | ** Ivy and Counsel | 227 | ** Ivy and Counsel |
215 | 228 | ||
216 | #+begin_src emacs-lisp | 229 | #+begin_src emacs-lisp |