dotfiles/emacs.d/git.el
Gered b01c2f3335 add helper command for disabling all vcs backends
mainly for speeding things up when dealing with remote filesystems
2024-12-04 19:01:38 -05:00

14 lines
216 B
EmacsLisp

(use-package magit
:ensure t
:bind
(("C-x g" . magit-status)))
(use-package diff-hl
:ensure t
:config
(global-diff-hl-mode))
(defun gered/disable-vcs ()
(interactive)
(setq vc-handled-backends ()))