From ba219499d093f3fce74c6059a1f97e3f8f23df71 Mon Sep 17 00:00:00 2001 From: Yauhen Karatkou Date: Wed, 3 Jan 2024 19:19:12 +0100 Subject: [PATCH] Fix text background in completion popup (#118) --- lua/dracula/groups.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/dracula/groups.lua b/lua/dracula/groups.lua index a5ba2c5..846f282 100644 --- a/lua/dracula/groups.lua +++ b/lua/dracula/groups.lua @@ -387,8 +387,8 @@ local function setup(configs) IndentBlanklineContextChar = { fg = colors.bright_red, nocombine = true, }, -- Nvim compe - CmpItemAbbrDeprecated = { fg = colors.white, bg = colors.menu, }, - CmpItemAbbrMatch = { fg = colors.cyan, bg = colors.menu, }, + CmpItemAbbrDeprecated = { fg = colors.white, bg = colors.bg, }, + CmpItemAbbrMatch = { fg = colors.cyan, bg = colors.bg, }, -- barbar BufferVisibleTarget = { fg = colors.red }, @@ -407,8 +407,8 @@ local function setup(configs) CompeDocumentationBorder = { link = "Pmenu" }, -- Cmp - CmpItemKind = { link = "Pmenu" }, - CmpItemAbbr = { link = "Pmenu" }, + CmpItemAbbr = { fg = colors.white, bg = colors.bg }, + CmpItemKind = { fg = colors.white, bg = colors.bg }, CmpItemKindMethod = { link = "@method" }, CmpItemKindText = { link = "@text" }, CmpItemKindFunction = { link = "@function" },