summaryrefslogtreecommitdiffstats
path: root/lua/Nanderty/Plugins/treesitter.lua
blob: 7baec80483eba1c8c4e71edba69a557c24b969e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require'nvim-treesitter.configs'.setup {
  ensure_installed = {"help", "javascript", "html", "css", "python", "cpp", "c", "lua", "php",},

  sync_install = false,

  auto_install = true,


  highlight = {
    enable = true,

  },
}