diff options
author | LostNeophyte <[email protected]> | 2023-01-25 13:59:01 +0100 |
---|---|---|
committer | LostNeophyte <[email protected]> | 2023-01-25 13:59:01 +0100 |
commit | 4f02e54d923414eb6690d64c7e334f624a2a9342 (patch) | |
tree | 6fca9966ae4952b636d835be2c4ec0573f90f91b /lua/lvim/plugins.lua | |
parent | f617164b49ac3f18fd7209d0cdd3b75b3a4274ae (diff) |
restore bigfile
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 425e8559..bac6ae63 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -300,16 +300,16 @@ local core_plugins = { lazy = lvim.colorscheme ~= "onedarker", }, - -- TODO: add option in bigfile to not require treesitter - -- { - -- "lunarvim/bigfile.nvim", - -- config = function() - -- pcall(function() - -- require("bigfile").config(lvim.builtin.bigfile.config) - -- end) - -- end, - -- enabled = lvim.builtin.bigfile.active, - -- }, + { + "lunarvim/bigfile.nvim", + branch = "lazy-treesitter", + config = function() + pcall(function() + require("bigfile").config(lvim.builtin.bigfile.config) + end) + end, + enabled = lvim.builtin.bigfile.active, + }, } local default_snapshot_path = join_paths(get_lvim_base_dir(), "snapshots", "default.json") |