mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Hopefully this will help me write better commit messages with fewer spelling mistakes, and without long lines.
8 lines
200 B
EmacsLisp
8 lines
200 B
EmacsLisp
(add-hook 'magit-log-edit-mode-hook
|
|
(lambda ()
|
|
(flyspell-mode)
|
|
(linum-mode t)
|
|
(auto-fill-mode)
|
|
(setq fill-column 72)
|
|
(fci-mode)))
|