diff --git a/lua/plugins.lua b/lua/plugins.lua index 3e9bfd6..12d3d76 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -296,7 +296,7 @@ local function manage_plugins() disable = {}, -- disable slow treesitter highlight for large files disable = function(lang, buf) - local max_filesize = 100 * 1024 -- 100 KB + local max_filesize = 200 * 1024 -- 200 KB local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf)) if ok and stats and stats.size > max_filesize then