Files
.emacs.d/languages/cucumber.el

11 lines
344 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)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)))