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.
14 lines
436 B
EmacsLisp
14 lines
436 B
EmacsLisp
;; erlang-mode is part of the Erlang source, and I found
|
|
;; no simple way to create a el-get package. So it's one
|
|
;; more thing thats not installed through el-get.
|
|
|
|
(add-to-list 'load-path "~/.emacs.d/languages/erlang")
|
|
(setq erlang-root-dir "/usr/local")
|
|
(setq exec-path (cons "/usr/local/bin" exec-path))
|
|
(require 'erlang-start)
|
|
(require 'erlang-flymake)
|
|
|
|
(add-hook 'erland-mode-hook
|
|
(lambda ()
|
|
(linum-mode t)))
|