diff options
Diffstat (limited to 'lua/lvim/plugins.lua')
| -rw-r--r-- | lua/lvim/plugins.lua | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 5b093846..6f68f1c4 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -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") | 
