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

26 lines
392 B
Lua
Raw Normal View History

2023-09-14 21:03:17 +03:00
return {
2023-09-15 13:27:54 +03:00
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, {
"java",
"go",
"gomod",
"gowork",
"gosum",
"dockerfile",
"terraform",
"hcl",
"json",
"json5",
"jsonc",
"ninja",
"python",
"rst",
"toml",
"yaml",
})
end
end,
2023-09-14 21:03:17 +03:00
}