mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
21 lines
361 B
Lua
21 lines
361 B
Lua
|
return {
|
||
|
recommended = function()
|
||
|
return LazyVim.extras.wants({
|
||
|
ft = { "erlang" },
|
||
|
root = { "rebar.config", "erlang.mk" },
|
||
|
})
|
||
|
end,
|
||
|
{
|
||
|
"neovim/nvim-lspconfig",
|
||
|
opts = {
|
||
|
servers = {
|
||
|
erlangls = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = { ensure_installed = { "erlang" } },
|
||
|
},
|
||
|
}
|