aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/elp.lua
blob: d299a45044a9483c3b246dc38d1ddc12597d3486 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---@brief
---
--- https://whatsapp.github.io/erlang-language-platform
---
--- ELP integrates Erlang into modern IDEs via the language server protocol and was
--- inspired by rust-analyzer.
---@type vim.lsp.Config
return {
  cmd = { 'elp', 'server' },
  filetypes = { 'erlang' },
  root_markers = { 'rebar.config', 'erlang.mk', '.git' },
}