Files
emacs/config/vcs.org
2025-12-02 03:10:53 -06:00

21 lines
494 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 magit
:defer t
: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