feat(erlang): Add Erlang LS and erlang treesitter

This commit is contained in:
George Guimarães 2024-07-04 11:54:35 -03:00
parent 045faec035
commit 2c5baebedb
No known key found for this signature in database
GPG key ID: 20E86F6F5FC22FA7

View file

@ -0,0 +1,20 @@
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" } },
},
}