Files
.emacs.d/languages/cucumber.el
Jim Myhrberg c38d910344 Disable global linum-mode, and only activate it in specific modes where I want it.
This gives me more space in the Speedbar frame as it doesn't show line numbers anymore.
2011-11-15 18:01:43 +00:00

8 lines
225 B
EmacsLisp

(add-to-list 'auto-mode-alist '("\\.feature" . feature-mode))
(add-hook 'feature-mode-hook
(lambda ()
(fci-mode)
(linum-mode t)
(setq whitespace-action (quote (auto-cleanup)))))