1
0
Fork 0
dotfiles/.emacs.d/include/priime-vc.el
Lucas Sta Maria e99a639325
refactor(emacs): organise into reasonable modules
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-11-03 19:08:26 -05:00

14 lines
314 B
EmacsLisp

;;; priime-vc.el --- Version control configuration
;;; Commentary:
;; Provides configuration for Magit.
;;; Code:
(use-package magit :straight 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