Files
emacs/config/vcs.org

21 lines
494 B
Org Mode
Raw Normal View History

2025-10-30 14:05:18 -05:00
* 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
2025-12-02 03:10:53 -06:00
:bind (("C-c M" . magit-dispatch))
2025-10-30 14:05:18 -05:00
: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