From f9311db805dc29ed96b009c836231cd87b43b861 Mon Sep 17 00:00:00 2001 From: Squibid Date: Sun, 18 May 2025 22:32:28 -0400 Subject: try and make everything confined to 80chars --- lua/conf/plugins/treesitter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lua/conf/plugins/treesitter.lua') diff --git a/lua/conf/plugins/treesitter.lua b/lua/conf/plugins/treesitter.lua index e473de4..4354953 100644 --- a/lua/conf/plugins/treesitter.lua +++ b/lua/conf/plugins/treesitter.lua @@ -48,7 +48,8 @@ return { "nvim-treesitter/nvim-treesitter", -- disable in big files -- TODO: update before nvim 1.0 when vim.loop is removed - 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 > (1024 * 100 * 10) --[[1MB]] then return true end -- cgit v1.2.1