1
0
Fork 0
dotfiles/.emacs.d/include/priime-vc.el
Lucas Sta Maria 628398a3f4
fix(emacs): re-include vc-follow-symlink
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-11-20 14:34:39 -05:00

17 lines
382 B
EmacsLisp

;;; priime-vc.el --- Version control configuration
;;; Commentary:
;; Provides configuration for Magit.
;;; Code:
(use-package magit :straight t
:custom
(auth-sources '("~/.authinfo"))
(vc-follow-symlink t)
:bind (("<f5>" . magit-status)
("C-x g" . magit-status)))
(use-package forge :straight t
:after (magit))
(provide 'priime-vc)
;;; priime-vc.el ends here