mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-28 22:08:12 +02:00
perf: handle big files better (#3449)
fixes https://github.com/LunarVim/LunarVim/issues/3393
This commit is contained in:
parent
9347abc1d4
commit
fb7da7bc78
5 changed files with 22 additions and 34 deletions
|
@ -281,6 +281,16 @@ local core_plugins = {
|
|||
end,
|
||||
disable = lvim.colorscheme ~= "onedarker",
|
||||
},
|
||||
|
||||
{
|
||||
"lunarvim/bigfile.nvim",
|
||||
config = function()
|
||||
pcall(function()
|
||||
require("bigfile").config(lvim.builtin.bigfile.config)
|
||||
end)
|
||||
end,
|
||||
disable = not lvim.builtin.bigfile.active,
|
||||
},
|
||||
}
|
||||
|
||||
local default_snapshot_path = join_paths(get_lvim_base_dir(), "snapshots", "default.json")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue