From bd962b97297babf5fd13539b43772ef09ec4d52d Mon Sep 17 00:00:00 2001 From: Shaun Clayton Date: Sat, 13 Jul 2024 18:53:32 -0400 Subject: [PATCH] fix: revert placement of WhichKeyFloat hl group --- lua/rose-pine.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lua/rose-pine.lua b/lua/rose-pine.lua index 33b0d21..fbc5445 100644 --- a/lua/rose-pine.lua +++ b/lua/rose-pine.lua @@ -76,9 +76,6 @@ local function set_highlights() IndentBlanklineChar = { fg = palette.muted, nocombine = true }, IndentBlanklineSpaceChar = { fg = palette.muted, nocombine = true }, IndentBlanklineSpaceCharBlankline = { fg = palette.muted, nocombine = true }, - - -- folke/which-key.nvim - WhichKeyFloat = { bg = groups.panel }, } local default_highlights = { ColorColumn = { bg = palette.surface }, @@ -524,6 +521,7 @@ local function set_highlights() WhichKey = { fg = palette.iris }, WhichKeyBorder = make_border(), WhichKeyDesc = { fg = palette.gold }, + WhichKeyFloat = { bg = groups.panel }, WhichKeyGroup = { fg = palette.foam }, WhichKeyNormal = { link = "NormalFloat" }, WhichKeySeparator = { fg = palette.subtle },