This commit is contained in:
parent
2df8189c91
commit
cd9fc69f3d
1 changed files with 10 additions and 7 deletions
17
init.el
17
init.el
|
@ -409,18 +409,21 @@
|
||||||
(which-key-setup-side-window-right))
|
(which-key-setup-side-window-right))
|
||||||
|
|
||||||
(use-package magit
|
(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)))
|
: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
|
(use-package difftastic
|
||||||
:demand t
|
:demand t
|
||||||
:bind (:map magit-blame-read-only-mode-map
|
:bind (:map magit-blame-read-only-mode-map
|
||||||
("D" . difftastic-magit-show)
|
("D" . difftastic-magit-show)
|
||||||
("S" . difftastic-magit-show))
|
("S" . difftastic-magit-show))
|
||||||
:config
|
:config
|
||||||
(eval-after-load 'magit-diff
|
(eval-after-load 'magit-diff
|
||||||
'(transient-append-suffix 'magit-diff '(-1 -1)
|
'(transient-append-suffix 'magit-diff '(-1 -1)
|
||||||
|
|
Reference in a new issue