Files
.emacs.d/mode-customizations/makefile-mode.el

12 lines
271 B
EmacsLisp

(defun customizations-for-makefile-mode ()
(interactive)
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(auto-complete-mode)
(subword-mode)
(setq tab-width 4)
(highlight-indentation-mode))
(add-hook 'makefile-mode-hook 'customizations-for-makefile-mode)