Files
.emacs.d/mode-customizations/magit-log-edit-mode.el
Jim Myhrberg 2f32571fcd Customize magit-log-edit-mode.
Hopefully this will help me write better commit messages with fewer
spelling mistakes, and without long lines.
2012-03-19 23:49:46 +00:00

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)))