treesitter: use stable version

This commit is contained in:
Mathias Schneider
2026-04-13 11:30:37 +02:00
parent 0d91fde161
commit 1c47a8aaf9
+5 -3
View File
@@ -1,6 +1,5 @@
return {
"nvim-treesitter/nvim-treesitter",
branch = "master",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
config = function()
@@ -27,9 +26,12 @@ return {
"markdown",
"markdown_inline",
},
highlight = { enable = true },
highlight = {
enable = true,
-- Disable additional_vim_regex_highlighting to avoid conflicts
additional_vim_regex_highlighting = false,
},
indent = { enable = true },
folding = { enable = true },
})
end
end,