dots/config/astronvim/lua/user/plugins/treesitter.lua
2023-04-07 17:25:47 -04:00

7 lines
257 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
config = function(plugin, opts)
opts.ensure_installed = { "javascript", "typescript", "php", "python", "lua", "bash", "sql", "yaml", "json" }
require("plugins.configs.nvim-treesitter")(plugin, opts)
end,
}