1
0
Fork 0
dotfiles/.emacs.d/include/priime-vc.el
Lucas Sta Maria 9b862b7d2b
refactor(emacs): remove misc.el
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-11-03 19:08:28 -05:00

15 lines
356 B
EmacsLisp

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