mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Update :feature version-control to support module flags
This commit is contained in:
@ -1,12 +1,17 @@
|
|||||||
;;; feature/version-control/config.el -*- lexical-binding: t; -*-
|
;;; feature/version-control/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
(unless (featurep! -git)
|
||||||
|
(load! +git))
|
||||||
|
;; TODO hg support
|
||||||
|
;; (unless (featurep! -hg)
|
||||||
|
;; (load! +hg))
|
||||||
|
|
||||||
|
;;
|
||||||
(setq vc-make-backup-files nil)
|
(setq vc-make-backup-files nil)
|
||||||
|
|
||||||
(defvar +vcs-auto-hydra-smerge t
|
(defvar +vcs-auto-hydra-smerge t
|
||||||
"When entering `smerge-mode' automatically open associated hydra.")
|
"When entering `smerge-mode' automatically open associated hydra.")
|
||||||
|
|
||||||
(load! +git)
|
|
||||||
;; (load! +hg)
|
|
||||||
|
|
||||||
(after! vc-annotate
|
(after! vc-annotate
|
||||||
(set! :popup
|
(set! :popup
|
||||||
|
@ -5,11 +5,12 @@
|
|||||||
;; n/a
|
;; n/a
|
||||||
|
|
||||||
;;; +git
|
;;; +git
|
||||||
(package! git-gutter-fringe)
|
(when (featurep! +git)
|
||||||
(package! git-link)
|
(package! git-gutter-fringe)
|
||||||
(package! git-timemachine)
|
(package! git-link)
|
||||||
(package! gitconfig-mode)
|
(package! git-timemachine)
|
||||||
(package! gitignore-mode)
|
(package! gitconfig-mode)
|
||||||
(package! magit)
|
(package! gitignore-mode)
|
||||||
|
(package! magit))
|
||||||
|
|
||||||
;;; TODO +hg
|
;;; TODO +hg
|
||||||
|
Reference in New Issue
Block a user