home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 538da605d34abe71ef3b0d96061af53dd0550812
parent 0879a99d77f7ca5f4d467eee5934e237038d0157
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sat, 16 May 2020 13:07:53 +0200

config-vcs.el: add magit-todos configuration

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/emacs.nix | 1+
Mtools/emacs/config/config-vcs.el | 9+++++++++
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/modules/profiles/emacs.nix b/modules/profiles/emacs.nix @@ -135,6 +135,7 @@ in magit magit-annex magit-popup + magit-todos minions moody mwim diff --git a/tools/emacs/config/config-vcs.el b/tools/emacs/config/config-vcs.el @@ -108,6 +108,15 @@ (add-hook 'after-save-hook #'magit-after-save-refresh-status)) ;; -UseMagit +;; UseMagitTodos +(use-package magit-todos + :hook (magit-mode . magit-todos-mode) + :custom + (magit-todos-exclude-globs '("node_modules" "vendor" "*.json" "*.html")) + :config + (setq magit-todos-auto-group-items 'always)) +;; -UseMagittodos + ;; UseMagitAnnex (use-package magit-annex :after magit)