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

494 B

VCS

When it comes to git, (which is all that's configured for now), the easy choice is Magit. I've kept the configuration pretty minimal. Only adding forge support really.

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