Files
nvim/lua/plugins/nvim-treesitter.lua
2023-09-14 21:03:17 +03:00

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