/
/
/
1return {
2 "nvim-treesitter/nvim-treesitter",
3 build = function()
4 require("nvim-treesitter.install").update({ with_sync = true })()
5 end,
6
7 config = function ()
8 require'nvim-treesitter.configs'.setup {
9 ensure_installed = { "javascript", "rust", "cmake", "xml", "yaml", "cpp", "python"},
10
11 sync_install = false,
12
13 auto_install = true,
14
15 highlight = {
16 enable = true,
17 },
18 }
19 end
20}
21