blob: 0b5650acb3302edf3963a35d9c8819a2a47fae34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local configs = require("nvim-treesitter.configs")
configs.setup {
ensure_installed = "",
sync_install = false,
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
additional_vim_regex_highlighting = true,
},
indent = { enable = false, },
}
|