mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
This gives me more space in the Speedbar frame as it doesn't show line numbers anymore.
8 lines
225 B
EmacsLisp
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)))))
|