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
211 B
EmacsLisp
8 lines
211 B
EmacsLisp
;; Lisp Hook
|
|
(add-hook 'emacs-lisp-mode-hook
|
|
(lambda ()
|
|
(flyspell-prog-mode)
|
|
(setq whitespace-action (quote (auto-cleanup)))
|
|
(fci-mode)
|
|
(linum-mode t)))
|