mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 08:53:33 +02:00
33 lines
558 B
Lua
33 lines
558 B
Lua
|
return {
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = function(_, opts)
|
||
|
vim.list_extend(opts.ensure_installed, {
|
||
|
"elixir",
|
||
|
"heex",
|
||
|
"eex",
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"williamboman/mason.nvim",
|
||
|
opts = function(_, opts)
|
||
|
vim.list_extend(opts.ensure_installed, {
|
||
|
"elixir-ls",
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"nvim-neotest/neotest",
|
||
|
optional = true,
|
||
|
dependencies = {
|
||
|
"jfpedroza/neotest-elixir",
|
||
|
},
|
||
|
opts = {
|
||
|
adapters = {
|
||
|
["neotest-elixir"] = {},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|