Tidy up
This commit is contained in:
parent
b32a587b75
commit
90ef15e1c1
13 changed files with 93 additions and 106 deletions
|
@ -1,27 +1,27 @@
|
|||
;;; core-vcs.el --- version control awareness
|
||||
|
||||
(use-package git-commit-mode ;
|
||||
:mode ("/COMMIT_EDITMSG\\'"
|
||||
"/NOTES_EDITMSG\\'"
|
||||
"/MERGE_MSG\\'"
|
||||
"/TAG_EDITMSG\\'"
|
||||
"/PULLREQ_EDITMSG\\'")
|
||||
:mode ("/COMMIT_EDITMSG$"
|
||||
"/NOTES_EDITMSG$"
|
||||
"/MERGE_MSG$"
|
||||
"/TAG_EDITMSG$"
|
||||
"/PULLREQ_EDITMSG$")
|
||||
:config
|
||||
(evil-set-initial-state 'git-commit-mode 'insert))
|
||||
|
||||
(use-package git-rebase-mode
|
||||
:mode "/git-rebase-todo\\'"
|
||||
:mode "/git-rebase-todo$"
|
||||
:config
|
||||
(evil-set-initial-state 'git-rebase-mode 'insert))
|
||||
|
||||
(use-package gitconfig-mode
|
||||
:mode ("/\\.?git/?config\\'" "/\\.gitmodules\\'")
|
||||
:mode ("/\\.?git/?config$" "/\\.gitmodules$")
|
||||
:init (add-hook 'gitconfig-mode-hook 'flyspell-mode))
|
||||
|
||||
(use-package gitignore-mode
|
||||
:mode ("/\\.gitignore\\'"
|
||||
"/\\.git/info/exclude\\'"
|
||||
"/git/ignore\\'"))
|
||||
:mode ("/\\.gitignore$"
|
||||
"/\\.git/info/exclude$"
|
||||
"/git/ignore$"))
|
||||
|
||||
(use-package diff-hl
|
||||
:init (setq diff-hl-draw-borders nil)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue