mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Improve erlang configuration
This commit is contained in:
parent
7762fb8c47
commit
4e83759124
1 changed files with 8 additions and 6 deletions
|
@ -528,14 +528,16 @@ Communicates with the clojure REPL.
|
|||
:mode "\\.hy$")
|
||||
#+END_SRC
|
||||
** Erlang
|
||||
A distributed, fault-tolerant functional language.
|
||||
#+name: programming
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package erlang
|
||||
:ensure t
|
||||
:config (add-hook 'erlang-mode-hook
|
||||
(lambda ()
|
||||
(setq inferior-erlang-machine-options '("-sname" "emacs"
|
||||
"-hidden")))))
|
||||
(use-package erlang
|
||||
:ensure t
|
||||
:mode ("\.[eh]rl$" . erlang-mode)
|
||||
:config (add-hook 'erlang-mode-hook
|
||||
(lambda ()
|
||||
(setq inferior-erlang-machine-options '("-sname" "emacs"
|
||||
"-hidden")))))
|
||||
#+END_SRC
|
||||
** PHP
|
||||
#+name: programming
|
||||
|
|
Loading…
Reference in a new issue