mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 17:44:38 +01:00
29 lines
523 B
Lua
29 lines
523 B
Lua
require'nvim-treesitter.configs'.setup {
|
|
ensure_installed = "all",
|
|
sync_install = true,
|
|
auto_install = true,
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
disable = {},
|
|
},
|
|
ensure_installed = {
|
|
"tsx",
|
|
"toml",
|
|
"fish",
|
|
"php",
|
|
"json",
|
|
"yaml",
|
|
"swift",
|
|
"css",
|
|
"html",
|
|
"lua"
|
|
},
|
|
autotag = {
|
|
enable = true,
|
|
},
|
|
}
|