From aeca4c17feeada3f7156c366843b9f18793db66f Mon Sep 17 00:00:00 2001 From: Ramojus Lapinskas <41536253+ramojus@users.noreply.github.com> Date: Sat, 10 Aug 2024 11:02:02 +0300 Subject: [PATCH] fix(lazy): use NormalFloat bg as bg (#52) --- lua/mellifluous/highlights/plugins/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/mellifluous/highlights/plugins/lazy.lua b/lua/mellifluous/highlights/plugins/lazy.lua index 73ba0c7..fd8c135 100644 --- a/lua/mellifluous/highlights/plugins/lazy.lua +++ b/lua/mellifluous/highlights/plugins/lazy.lua @@ -5,7 +5,7 @@ function M.set(hl, colors) local groups = require("mellifluous.highlights.custom_groups").get(colors) local bg = hl.get("NormalFloat").bg - hl.set("LazyNormal", { bg = colors.bg2 }) + hl.set("LazyNormal", { bg = bg }) hl.set("LazyButton", groups.MenuButton) hl.set("LazyButtonActive", groups.MenuButtonSelected(bg)) hl.set("LazyH1", { link = "LazyButtonActive" })