From d9aa956ed8ba77b14f2632981fa89abfdc902487 Mon Sep 17 00:00:00 2001 From: SL1900 Date: Mon, 27 Oct 2025 13:50:26 +0900 Subject: [PATCH] Added bigfile.nvim plugin --- lua/plugins/bigfile.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lua/plugins/bigfile.lua diff --git a/lua/plugins/bigfile.lua b/lua/plugins/bigfile.lua new file mode 100644 index 0000000..b19878f --- /dev/null +++ b/lua/plugins/bigfile.lua @@ -0,0 +1,10 @@ +return { + "LunarVim/bigfile.nvim", + event = "BufReadPre", + opts = { + filesize = 2, + }, + config = function (_, opts) + require("bigfile").setup(opts) + end +}