Files
.emacs.d/languages/erlang.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

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)))