Skip to content

Commit

Permalink
Update text background in completion popup (Mofiqul#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
evkorotkov committed Jan 3, 2024
1 parent cadf9a1 commit 4d7cfb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/dracula/groups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand All @@ -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" },
Expand Down

0 comments on commit 4d7cfb9

Please sign in to comment.