mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
9 lines
253 B
EmacsLisp
9 lines
253 B
EmacsLisp
(add-to-list 'auto-mode-alist '("\\.feature" . feature-mode))
|
|
|
|
(add-hook 'feature-mode-hook
|
|
(lambda ()
|
|
(setq whitespace-action (quote (auto-cleanup)))
|
|
(flyspell-mode)
|
|
(linum-mode t)
|
|
(fci-mode)))
|