Files
nvim/lua/plugins/nvim-treesitter.lua

12 lines
233 B
Lua
Raw Normal View History

2023-09-14 21:03:17 +03:00
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,
}