Move hl-todo to correct place

This commit is contained in:
David Morgan 2022-07-19 16:06:45 +01:00
parent 679c36f7ec
commit 78889e6c1a
2 changed files with 11 additions and 4 deletions

View File

@ -11,10 +11,6 @@
:config
(which-function-mode 1))
(use-package hl-todo
:config
(global-hl-todo-mode 1))
(use-package simple-modeline
:hook (after-init . simple-modeline-mode)
:custom

View File

@ -101,6 +101,17 @@
:diminish
:config (which-key-mode +1))
(use-package hl-todo
:bind
(:map hl-todo-mode-map
("C-c c t p" . hl-todo-previous)
("C-c c t n" . hl-todo-next)
("C-c c t o" . hl-todo-occur)
("C-c c t r" . hl-todo-rgrep)
("C-c c t i" . hl-todo-insert))
:config
(global-hl-todo-mode 1))
(use-package rainbow-delimiters
:hook
(text-mode . (lambda () (rainbow-delimiters-mode +1)))