12 lines
233 B
Lua
12 lines
233 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
if type(opts.ensure_installed) == "table" then
|
|
vim.list_extend(opts.ensure_installed, {
|
|
"terraform",
|
|
"hcl",
|
|
})
|
|
end
|
|
end,
|
|
}
|