From d1c8c8c9a6f5e794936c270c16102a41e83853e0 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Mon, 26 Feb 2024 09:20:41 -0500 Subject: [PATCH] chore: increase default large_buf size --- lua/plugins/astrocore.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/astrocore.lua b/lua/plugins/astrocore.lua index ade3403..24acee2 100644 --- a/lua/plugins/astrocore.lua +++ b/lua/plugins/astrocore.lua @@ -12,7 +12,7 @@ return { opts = { -- Configure core features of AstroNvim features = { - large_buf = { size = 1024 * 100, lines = 10000 }, -- set global limits for large files for disabling features like treesitter + large_buf = { size = 1024 * 500, lines = 10000 }, -- set global limits for large files for disabling features like treesitter autopairs = true, -- enable autopairs at start cmp = true, -- enable completion at start highlighturl = true, -- highlight URLs at start