From c1a1addb4987c6b8642df060848fd86e31fc564b Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 5 Mar 2024 09:30:28 +0530 Subject: fmt: set column_width to 80, sort require --- lua/plugins/opts/treesitter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua/plugins/opts/treesitter.lua') 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 -- cgit v1.2.3