From 9eaf21e45720550b71ba5955c9d85acdc21e53f6 Mon Sep 17 00:00:00 2001 From: Emmet Date: Thu, 26 Oct 2023 21:28:09 -0500 Subject: [PATCH] Added magit-todos --- user/app/doom-emacs/config.el | 2 ++ user/app/doom-emacs/doom.org | 9 ++++++--- user/app/doom-emacs/init.el | 6 +++--- user/app/doom-emacs/packages.el | 1 + 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/user/app/doom-emacs/config.el b/user/app/doom-emacs/config.el index 3ecbebf6..414848e1 100644 --- a/user/app/doom-emacs/config.el +++ b/user/app/doom-emacs/config.el @@ -1142,6 +1142,8 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)." "k" 'evil-previous-visual-line "q" '+magit/quit (kbd "") 'magit-visit-ref) +(require 'magit-todos) +(magit-todos-mode 1) (evil-set-initial-state 'ibuffer-mode 'motion) (evil-define-key 'motion 'ibuffer-mode diff --git a/user/app/doom-emacs/doom.org b/user/app/doom-emacs/doom.org index acb43185..cab7b941 100644 --- a/user/app/doom-emacs/doom.org +++ b/user/app/doom-emacs/doom.org @@ -1310,6 +1310,8 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)." "k" 'evil-previous-visual-line "q" '+magit/quit (kbd "") 'magit-visit-ref) +(require 'magit-todos) +(magit-todos-mode 1) #+END_SRC ** Ibuffer Configuration @@ -1615,7 +1617,7 @@ This section is the [[./init.el][init.el]] section, which controls which Doom mo ;;doom-dashboard ; a nifty splash screen for Emacs doom-quit ; DOOM quit-message prompts when you quit Emacs (emoji +unicode) ; 🙂 - hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW + hl-todo ; highlight todo/fixme/note/deprecated/hack/review ;;hydra ;;indent-guides ; highlighted indent columns ;;ligatures ; ligatures and symbols to make your code pretty again @@ -1669,7 +1671,7 @@ This section is the [[./init.el][init.el]] section, which controls which Doom mo :tools ;;ansible ;;biblio ; Writes a PhD for you (citation needed) - ;;debugger ; FIXME stepping through code, to help you add bugs + ;;debugger ; stepping through code, to help you add bugs ;;direnv docker ;;editorconfig ; let someone else argue about tabs vs spaces @@ -1682,7 +1684,7 @@ This section is the [[./init.el][init.el]] section, which controls which Doom mo ;;make ; run make tasks from Emacs ;;pass ; password manager for nerds ;;pdf ; pdf enhancements - ;;prodigy ; FIXME managing external services & code builders + ;;prodigy ; managing external services & code builders rgb ; creating color strings ;;taskrunner ; taskrunner for all your projects ;;terraform ; infrastructure as code @@ -1807,6 +1809,7 @@ Any git package can be configured for a particular commit or branch: (package! all-the-icons-dired) (package! all-the-icons-completion) (package! ox-reveal) +(package! magit-todos) (package! hledger-mode) (package! rainbow-mode) (package! crdt) diff --git a/user/app/doom-emacs/init.el b/user/app/doom-emacs/init.el index d53026f2..462bcf1a 100644 --- a/user/app/doom-emacs/init.el +++ b/user/app/doom-emacs/init.el @@ -16,7 +16,7 @@ ;;doom-dashboard ; a nifty splash screen for Emacs doom-quit ; DOOM quit-message prompts when you quit Emacs (emoji +unicode) ; 🙂 - hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW + hl-todo ; highlight todo/fixme/note/deprecated/hack/review ;;hydra ;;indent-guides ; highlighted indent columns ;;ligatures ; ligatures and symbols to make your code pretty again @@ -70,7 +70,7 @@ :tools ;;ansible ;;biblio ; Writes a PhD for you (citation needed) - ;;debugger ; FIXME stepping through code, to help you add bugs + ;;debugger ; stepping through code, to help you add bugs ;;direnv docker ;;editorconfig ; let someone else argue about tabs vs spaces @@ -83,7 +83,7 @@ ;;make ; run make tasks from Emacs ;;pass ; password manager for nerds ;;pdf ; pdf enhancements - ;;prodigy ; FIXME managing external services & code builders + ;;prodigy ; managing external services & code builders rgb ; creating color strings ;;taskrunner ; taskrunner for all your projects ;;terraform ; infrastructure as code diff --git a/user/app/doom-emacs/packages.el b/user/app/doom-emacs/packages.el index 5aa60fcd..c65419bc 100644 --- a/user/app/doom-emacs/packages.el +++ b/user/app/doom-emacs/packages.el @@ -12,6 +12,7 @@ (package! all-the-icons-dired) (package! all-the-icons-completion) (package! ox-reveal) +(package! magit-todos) (package! hledger-mode) (package! rainbow-mode) (package! crdt)