Add erlang to emacs config

This commit is contained in:
Erwin Boskma 2023-03-21 17:21:33 +01:00
parent ce3acd482e
commit 018610f342
Signed by: erwin
SSH key fingerprint: SHA256:CyeNoWXd3kjX2Nwu6pDxxdS7OqmPVOy0NavA/KU/ntU

View file

@ -1113,6 +1113,18 @@ Add a [[https://github.com/ayrat555/mix.el][mix]] minor mode to call =mix= tasks
(elixir-mode . mix-minor-mode))
#+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 support with [[https://github.com/rust-lang/rust-mode][rust-mode]].