blob: 92759d3462f42ac84236b8a65e2d40444bfa1c8f (
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 = { 'help' }, -- list of language that will be disabled
},
}
|