16 lines
417 B
EmacsLisp
16 lines
417 B
EmacsLisp
(provide 'thoom-git)
|
|
|
|
(use-package magit
|
|
:after seq
|
|
:ensure t
|
|
:custom (magit-save-repository-buffers 'dontask)
|
|
:bind (("C-x g" . magit-status)
|
|
:map magit-mode-map
|
|
(":" . execute-extended-command)
|
|
("x" . magit-discard)
|
|
:map magit-diff-section-map
|
|
("C-j" . nil)
|
|
:map magit-file-section-map
|
|
;; Unbind to stop overriding avy
|
|
("C-j" . nil)))
|