Enable spell-checking during magit commit
This is another (overdue) change about which I'm quite excited. Add spell-checking to my Git commit buffers. :)
This commit is contained in:
parent
48d9a70253
commit
3ba4112849
1 changed files with 4 additions and 1 deletions
|
@ -127,7 +127,10 @@
|
|||
;; git integration
|
||||
(use-package magit
|
||||
:config
|
||||
(add-hook 'git-commit-setup-hook (lambda () (company-mode -1)))
|
||||
(add-hook 'git-commit-setup-hook
|
||||
(lambda ()
|
||||
(company-mode -1)
|
||||
(flyspell-mode 1)))
|
||||
(setq magit-display-buffer-function
|
||||
#'magit-display-buffer-fullframe-status-v1))
|
||||
|
||||
|
|
Loading…
Reference in a new issue