LazyVim.LazyVim/lua/lazyvim/plugins/extras/lang/erlang.lua

21 lines
361 B
Lua
Raw Permalink Normal View History

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" } },
},
}