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