dotfiles/emacs-lisp/elixir.org
main a5a651dbb9
Large rework and cleanup
Signed-off-by: main <magic_rb@redalder.org>
2022-07-31 11:03:59 +02:00

661 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)
  )