blob: 411185944c4cd0922976e9f704fce473d4786ae8 (
plain)
1
2
3
4
5
6
7
8
|
require("nvim-treesitter.configs").setup {
ensure_installed = { "python", "cpp", "lua", "vim", "json", "toml" },
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
},
}
|