mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Add Elixir support
This commit is contained in:
parent
8f37013e59
commit
4053c8fcf4
1 changed files with 14 additions and 0 deletions
|
@ -228,6 +228,20 @@ A distributed, fault-tolerant functional language.
|
||||||
(setq inferior-erlang-machine-options '("-sname" "emacs"
|
(setq inferior-erlang-machine-options '("-sname" "emacs"
|
||||||
"-hidden")))))
|
"-hidden")))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** Elixir
|
||||||
|
Ruby-flavoured Erlang.
|
||||||
|
#+name: programming
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package elixir-mode
|
||||||
|
:ensure t
|
||||||
|
:mode "\\.exs?$")
|
||||||
|
|
||||||
|
(use-package alchemist
|
||||||
|
:ensure t)
|
||||||
|
|
||||||
|
(use-package ob-elixir
|
||||||
|
:ensure t)
|
||||||
|
#+END_SRC
|
||||||
*** Haskell
|
*** Haskell
|
||||||
A strongly typed, pure functional language.
|
A strongly typed, pure functional language.
|
||||||
#+name: programming
|
#+name: programming
|
||||||
|
|
Loading…
Reference in a new issue