14 lines
314 B
EmacsLisp
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
|