mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
14 lines
401 B
EmacsLisp
14 lines
401 B
EmacsLisp
(add-to-list 'auto-mode-alist '("\\.feature" . feature-mode))
|
|
|
|
(defun customizations-for-feature-mode ()
|
|
(interactive)
|
|
(setq whitespace-action (quote (auto-cleanup)))
|
|
(flyspell-mode)
|
|
(linum-mode t)
|
|
(fci-mode)
|
|
(setq highlight-indentation-offset 2)
|
|
(highlight-indentation-mode)
|
|
(highlight-indentation-current-column-mode))
|
|
|
|
(add-hook 'feature-mode-hook 'customizations-for-feature-mode)
|