aboutsummaryrefslogtreecommitdiff
path: root/lua/config/treesitter.lua
blob: ee07b831a6911519774f8716cebd482d9c38304a (plain)
1
2
3
4
5
6
7
8
require("nvim-treesitter.configs").setup {
  ensure_installed = { "python", "cpp", "lua", "vim", "json" },
  ignore_install = {}, -- List of parsers to ignore installing
  highlight = {
    enable = true, -- false will disable the whole extension
    disable = { 'help' }, -- list of language that will be disabled
  },
}