Files
nvim/lua/config/treesitter.lua
T
Aram Markarov a58c111ddd 11/12
2025-12-11 19:27:50 +01:00

10 lines
344 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 = {"toml", "json", "yaml", "css", "html", "lua"},
autotag = {enable = true}
}