dotfiles/emacs-lisp/elixir.org
Magic_RB e891fd2406
Emacs things
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2022-01-10 01:21:14 +01:00

545 B

Elixir

Elixir is a dynamic, functional language for building scalable and maintainable applications.

First we need a Elixir major mode.

  (use-package elixir-mode
    :straight t

Then to make LSP work, we hook it onto elixir-mode.

  :hook (elixir-mode-hook . lsp)
  )