some fixes to treesitter

This commit is contained in:
2026-04-03 07:41:31 +02:00
parent d3f3aa3a29
commit e664b6f464
+2 -1
View File
@@ -1,6 +1,6 @@
return { return {
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
lazy = true, branch = "master",
build = ":TSUpdate", build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" }, event = { "BufReadPost", "BufNewFile" },
config = function() config = function()
@@ -11,6 +11,7 @@ return {
ensure_installed = { "python", "lua", "json", "yaml", "javascript", "typescript" }, ensure_installed = { "python", "lua", "json", "yaml", "javascript", "typescript" },
highlight = { enable = true }, highlight = { enable = true },
indent = { enable = true }, indent = { enable = true },
folding = { enable = true },
}) })
end end
end, end,