working system

This commit is contained in:
Charlie Root 2024-09-06 11:42:11 +02:00
commit e0ad4ea627
53 changed files with 2927 additions and 0 deletions

View file

@ -0,0 +1,16 @@
(maybe-require-package 'hl-todo)
(add-hook (org-mode . hl-todo-mode))
(add-hook (prog-mode . hl-todo-mode))
(setq hl-todo-highlight-punctuation ":")
(setq hl-todo-keyword-faces
`(
("TODO" warning bold)
("FIXME" error bold)
("HACK" font-lock-constant-face bold)
("REVIEW" font-lock-keyword-face bold)
("NOTE" success bold)
("DEPRECATED" font-lock-doc-face bold)))
(provide 'init-hl-todo)