diff options
Diffstat (limited to 'nvim/lsp/elp.lua')
| -rwxr-xr-x | nvim/lsp/elp.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nvim/lsp/elp.lua b/nvim/lsp/elp.lua new file mode 100755 index 0000000..0731601 --- /dev/null +++ b/nvim/lsp/elp.lua @@ -0,0 +1,11 @@ +---@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. +return { + cmd = { 'elp', 'server' }, + filetypes = { 'erlang' }, + root_markers = { 'rebar.config', 'erlang.mk', '.git' }, +} |
