11 lines
255 B
EmacsLisp
11 lines
255 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)))
|