feature/version-control: remove -git flag

As much as possible, I'd prefer flags to be additive rather than
subtractive. Meaning, specifying a flag should add features, rather than
disable them; simply as a general Doom convention.
This commit is contained in:
Henrik Lissner 2018-01-30 21:21:33 -05:00
parent 23f914916e
commit 5210ee5f7e
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,4 @@
;;; feature/version-control/+git.el -*- lexical-binding: t; -*- ;;; feature/version-control/+git.el -*- lexical-binding: t; -*-
;;;###if (not (featurep! -git))
(when (featurep! :feature evil) (when (featurep! :feature evil)
(add-hook 'git-commit-mode-hook #'evil-insert-state)) (add-hook 'git-commit-mode-hook #'evil-insert-state))

View file

@ -1,7 +1,7 @@
;;; feature/version-control/config.el -*- lexical-binding: t; -*- ;;; feature/version-control/config.el -*- lexical-binding: t; -*-
(or (featurep! -git) (load! +git)) (load! +git)
;; TODO (or (featurep! -hg) (load! +hg)) ;; TODO (load! +hg)
;; ;;
(setq vc-make-backup-files nil) (setq vc-make-backup-files nil)