dev: Enable flyspell when making commits

This commit is contained in:
finga 2023-06-01 17:11:06 +02:00
parent 3b63fe790b
commit 9e9ec1829d

View file

@ -12,7 +12,10 @@
nil))
(directory-files "~/.config/vcsh/repo.d")))))
(list (completing-read "Repository: " repos nil t))))
(magit-status-internal (format "/vcsh:%s:" repo))))
(magit-status-internal (format "/vcsh:%s:" repo)))
:config
;; Turn on flyspell when writing commit messages
(add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell))
;; rust
(use-package cargo :ensure t)