treesitter update

This commit is contained in:
2026-04-06 16:05:08 -05:00
parent acb86e77f3
commit dfbaca029c
-11
View File
@@ -54,17 +54,6 @@ return {
end,
})
-- Enable treesitter-based indentation for supported filetypes
vim.api.nvim_create_autocmd("FileType", {
callback = function()
local ok = pcall(function()
vim.opt_local.indentexpr = "v:lua.vim.treesitter.indentexpr()"
end)
if not ok then
-- Parser not available for this filetype
end
end,
})
end,
},
{