@@ -7,7 +7,6 @@ Log.levels = {
WARN = 4,
ERROR = 5,
}
-vim.tbl_add_reverse_lookup(Log.levels)
local notify_opts = {}
local log_notify_as_notification = false
@@ -350,10 +350,11 @@ local core_plugins = {
"lunarvim/bigfile.nvim",
config = function()
pcall(function()
- require("bigfile").config(lvim.builtin.bigfile.config)
+ require("bigfile").setup(lvim.builtin.bigfile.config)
end)
end,
enabled = lvim.builtin.bigfile.active,
+ dependencies = { "nvim-treesitter/nvim-treesitter" },
event = { "FileReadPre", "BufReadPre", "User FileOpened" },
},