summaryrefslogtreecommitdiff
path: root/.config/emacs/init.el
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-14 15:39:45 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-14 15:39:45 +0200
commitc94960fa05e34aee4dafa590be9cd3a3b00532ce (patch)
treeab2d25b7dab4da0a84ccbc852892076cf30664a1 /.config/emacs/init.el
parent12878c359e61ce1a6d3c0516a3312f895f3b0e2a (diff)
emacs: Ignore .git/ and vendor/ in magit todos
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r--.config/emacs/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 06f25d5..7f69581 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -387,7 +387,9 @@ indentation-width.")
(use-package magit-todos
:after magit
- :init (magit-todos-mode))
+ :init (magit-todos-mode)
+ :custom
+ (magit-todos-exclude-globs '(".git/" "vendor/")))
(defun x-magit-status ()
(interactive)