This commit is contained in:
parent
2df8189c91
commit
cd9fc69f3d
1 changed files with 10 additions and 7 deletions
13
init.el
13
init.el
|
@ -409,13 +409,16 @@
|
|||
(which-key-setup-side-window-right))
|
||||
|
||||
(use-package magit
|
||||
:hook ((magit-mode . magit-delta-mode))
|
||||
:custom
|
||||
(magit-todos-keyword-suffix "([^)]+):")
|
||||
:config
|
||||
(magit-todos-mode +1)
|
||||
:bind (("C-c o g" . magit)))
|
||||
|
||||
(use-package magit-delta
|
||||
:hook (magit-mode . magit-delta-mode))
|
||||
|
||||
(use-package magit-todos
|
||||
:after magit
|
||||
:custom (magit-todos-keyword-suffix "\\(?:([^)]+)\\)?:?")
|
||||
:config (magit-todos-mode 1))
|
||||
|
||||
(use-package difftastic
|
||||
:demand t
|
||||
:bind (:map magit-blame-read-only-mode-map
|
||||
|
|
Reference in a new issue