From 4d7cfb95f255947eeb0dc25ed3c6fcc4f2be2baf Mon Sep 17 00:00:00 2001 From: Evgeny Korotkov Date: Wed, 3 Jan 2024 18:47:08 +0100 Subject: [PATCH] Update text background in completion popup (#112) --- 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" },