Add erlang to emacs config
This commit is contained in:
parent
ce3acd482e
commit
018610f342
1 changed files with 12 additions and 0 deletions
|
@ -1113,6 +1113,18 @@ Add a [[https://github.com/ayrat555/mix.el][mix]] minor mode to call =mix= tasks
|
||||||
(elixir-mode . mix-minor-mode))
|
(elixir-mode . mix-minor-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
*** Erlang
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package erlang
|
||||||
|
:mode
|
||||||
|
("\\.P\\'" . erlang-mode)
|
||||||
|
("\\.E\\'" . erlang-mode)
|
||||||
|
("\\.S\\'" . erlang-mode)
|
||||||
|
:config
|
||||||
|
(require 'erlang-start))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
*** Rust
|
*** Rust
|
||||||
|
|
||||||
Rust support with [[https://github.com/rust-lang/rust-mode][rust-mode]].
|
Rust support with [[https://github.com/rust-lang/rust-mode][rust-mode]].
|
||||||
|
|
Loading…
Reference in a new issue