This commit is contained in:
Lucius Hu 2021-06-05 10:08:14 +00:00 committed by GitHub
parent 53027df26a
commit 1d07f56aed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -23,7 +23,7 @@
(setq git-packages
'(
(evil-collection :toggle (spacemacs//support-evilified-buffer-p))
evil-collection
fill-column-indicator
;; forge requires a C compiler on Windows so we disable
;; it by default on Windows.
@ -57,8 +57,9 @@
:post-config
(add-to-list 'golden-ratio-exclude-buffer-names " *transient*")))
(defun git/pre-init-evil-collection ()
(add-to-list 'spacemacs-evil-collection-allowed-list 'magit))
(when spacemacs//support-evilified-buffer-p
(defun git/pre-init-evil-collection ()
(add-to-list 'spacemacs-evil-collection-allowed-list 'magit)))
(defun git/post-init-fill-column-indicator ()
(add-hook 'git-commit-mode-hook 'fci-mode))