aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/opts/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/opts/treesitter.lua')
-rw-r--r--lua/plugins/opts/treesitter.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/plugins/opts/treesitter.lua b/lua/plugins/opts/treesitter.lua
index ebcdf62..b9ec31a 100644
--- a/lua/plugins/opts/treesitter.lua
+++ b/lua/plugins/opts/treesitter.lua
@@ -27,7 +27,8 @@ return {
-- disable for > 100 KB files
disable = function(_, buf)
local max_filesize = 100 * 1024 -- 100 KB
- local ok, stats = pcall(vim.loop.fs_stat, vim.api.nvim_buf_get_name(buf))
+ 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
return true
end