1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
if not status_ok then
return
end
configs.setup {
ensure_installed = {
"bash",
"lua",
"vim",
"vimdoc",
},
sync_install = false,
auto_install = true,
ignore_install = { "" },
highlight = {
enable = true,
disable = {
"php",
"markdown",
"dockerfile"
},
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
disable = {
"yaml",
},
},
}
|