Files
dotfiles/thoom-emacs/modules/thoom-git.el
2024-04-29 12:28:20 -07:00

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)))