From dfbaca029cd89326a55e4235f7a116bbf9f96ed7 Mon Sep 17 00:00:00 2001 From: Steven Crawford Date: Mon, 6 Apr 2026 16:05:08 -0500 Subject: [PATCH] treesitter update --- lua/shelbybark/plugins/treesitter.lua | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lua/shelbybark/plugins/treesitter.lua b/lua/shelbybark/plugins/treesitter.lua index c23f916..c4b221c 100644 --- a/lua/shelbybark/plugins/treesitter.lua +++ b/lua/shelbybark/plugins/treesitter.lua @@ -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, }, {