Skip to content

Commit 585a293

Browse files
committed
fix: Reduce bigfile threshold to 0.5MB (default was 1.5)
1 parent 8814d09 commit 585a293

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/vnext/plugins/snacks.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ return {
66
lazy = false,
77
---@type snacks.Config
88
opts = {
9-
bigfile = { enabled = true },
9+
bigfile = {
10+
enabled = true,
11+
size = 0.5 * 1024 * 1024, -- 0.5MB
12+
},
1013
dashboard = {
1114
enabled = true,
1215
preset = {

0 commit comments

Comments
 (0)