From 26980217289157f448099737da2ede87408be2bd Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Mon, 31 Jan 2022 23:43:40 -0500 Subject: [PATCH] Add magit-todos config --- .emacs.d/init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index b003e4d..a68995c 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -515,7 +515,11 @@ (default-directory directory)) (magit-status))) :config - (setq magit-bury-buffer-function 'magit-mode-quit-window)) + (setq magit-bury-buffer-function 'magit-mode-quit-window) + + (use-package magit-todos :demand :if (package-installed-p 'magit-todos) + :config + (magit-todos-mode))) (use-package popwin :ensure :disabled