Files
emacs/config/vcs.org
2026-01-31 11:34:09 -06:00

25 lines
551 B
Org Mode

* VCS
When it comes to git, (which is all that's configured for now), the easy
choice is [[https://magit.vc/][Magit]]. I've kept the configuration pretty minimal. Only adding
forge support really.
#+begin_src emacs-lisp
(use-package transient
:defer t)
(use-package magit
:defer t
:after (transient)
:bind (("C-c M" . magit-dispatch))
:custom
(magit-repository-directories (list (cons elpaca-repos-directory 1)))
(magit-diff-refine-hunk 'all)
:config
(transient-bind-q-to-quit))
(use-package forge
:after (magit))
#+end_src