From ba79ac331fd8fc998bea168ef2efab77cb7fea0b Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 25 Mar 2024 23:53:54 +0100 Subject: [PATCH] fix(noice): Enable noice explicitly when not disabled via user config --- lua/core/plugins/noice.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/plugins/noice.lua b/lua/core/plugins/noice.lua index f211a3a4..6fc4347a 100644 --- a/lua/core/plugins/noice.lua +++ b/lua/core/plugins/noice.lua @@ -33,7 +33,7 @@ local default_keys = { return { { "folke/noice.nvim", - enabled = user_config.enabled, + enabled = user_config.enabled or true, event = "VeryLazy", dependencies = { "MunifTanjim/nui.nvim",