Enable magit-todos-mode globally

Rather than treat it like it's a minor mode.
This commit is contained in:
Henrik Lissner 2019-01-31 20:24:03 -05:00
parent 4a94599b19
commit 951b2be7d1
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -45,11 +45,12 @@ what features are available.")
(def-package! magit-todos
:hook (magit-mode . magit-todos-mode)
:after magit
:config
(setq magit-todos-require-colon nil)
(define-key magit-todos-section-map "j" nil)
(advice-add #'magit-todos-mode :around #'doom*shut-up))
(advice-add #'magit-todos-mode :around #'doom*shut-up)
(magit-todos-mode +1))
(def-package! magithub