mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add modules/ui/hl-todo
This commit is contained in:
11
modules/ui/hl-todo/config.el
Normal file
11
modules/ui/hl-todo/config.el
Normal file
@ -0,0 +1,11 @@
|
||||
;;; ui/hl-todo/packages.el
|
||||
|
||||
(@def-package hl-todo
|
||||
:commands hl-todo-mode
|
||||
:init
|
||||
(add-hook 'prog-mode-hook 'hl-todo-mode)
|
||||
:config
|
||||
(setq hl-todo-keyword-faces
|
||||
`(("TODO" . ,(face-foreground 'warning))
|
||||
("FIXME" . ,(face-foreground 'error))
|
||||
("NOTE" . ,(face-foreground 'success)))))
|
4
modules/ui/hl-todo/packages.el
Normal file
4
modules/ui/hl-todo/packages.el
Normal file
@ -0,0 +1,4 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; ui/hl-todo/packages.el
|
||||
|
||||
(@package hl-todo)
|
Reference in New Issue
Block a user