mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
11 lines
250 B
EmacsLisp
11 lines
250 B
EmacsLisp
;; Write commit messages in style
|
|
(defun customizations-for-git-commit-mode ()
|
|
(interactive)
|
|
(flyspell-mode)
|
|
(linum-mode t)
|
|
(auto-fill-mode)
|
|
(subword-mode)
|
|
(fci-mode))
|
|
|
|
(add-hook 'git-commit-mode-hook 'customizations-for-git-commit-mode)
|