about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-ui.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-08-30 12:55:32 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-08-30 12:55:32 +0100
commite60f23ad8032a466354ffe5ded76d525e7132ce9 (patch)
tree1f206bdf2dfe16e6f4b96f901ae819351a83520d /.emacs.d/lisp/init-ui.el
parentee30096da7a2dd7da5b2a779426c1d382966b86b (diff)
downloaddotfiles-e60f23ad8032a466354ffe5ded76d525e7132ce9.tar.gz
Remove hl-todo
Diffstat (limited to '.emacs.d/lisp/init-ui.el')
-rw-r--r--.emacs.d/lisp/init-ui.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/.emacs.d/lisp/init-ui.el b/.emacs.d/lisp/init-ui.el
index c40d4c6..d81e2a5 100644
--- a/.emacs.d/lisp/init-ui.el
+++ b/.emacs.d/lisp/init-ui.el
@@ -125,30 +125,6 @@
   :diminish
   :config (which-key-mode +1))
 
-(use-package hl-todo
-  :after modus-themes
-  :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))
-  :custom
-  (hl-todo-keyword-faces
-   '(("TODO"   . "red3")
-     ("djm"    . "green")
-     ("FIXME"  . "red3")
-     ("DEBUG"  . "#A020F0")
-     ("GOTCHA" . "#FF4500")
-     ("HACK" . "#FF4500")
-     ("STUB"   . "#1E90FF")
-     ("FAIL"   . "red3")
-     ("NOTE"   . "DarkOrange2")
-     ("DEPRECATED" . "yellow")))
-  :init
-  (global-hl-todo-mode 1))
-
 (use-package rainbow-delimiters
   :hook
   (text-mode . (lambda () (rainbow-delimiters-mode +1)))