mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
10 lines
240 B
EmacsLisp
10 lines
240 B
EmacsLisp
(defun customizations-for-lisp-mode ()
|
|
(interactive)
|
|
(setq whitespace-action (quote (auto-cleanup)))
|
|
(flyspell-prog-mode)
|
|
(linum-mode t)
|
|
(fci-mode)
|
|
(auto-complete-mode))
|
|
|
|
(add-hook 'lisp-mode-hook 'customizations-for-lisp-mode)
|