fix: Remove background for Pmenu

This commit is contained in:
danymat 2021-12-01 10:15:04 +01:00
commit 4d5a98725e

View file

@ -68,7 +68,7 @@ theme.base = {
NonText = { fg = p.inactive }, NonText = { fg = p.inactive },
Normal = { fg = p.text, bg = maybe_base }, Normal = { fg = p.text, bg = maybe_base },
NormalFloat = { fg = p.text, bg = p.surface }, NormalFloat = { fg = p.text, bg = p.surface },
Pmenu = { fg = p.subtle, bg = p.surface }, Pmenu = { fg = p.subtle },
PmenuSbar = { bg = p.overlay }, PmenuSbar = { bg = p.overlay },
PmenuSel = { fg = p.text, bg = p.overlay }, PmenuSel = { fg = p.text, bg = p.overlay },
PmenuThumb = { bg = p.inactive }, PmenuThumb = { bg = p.inactive },
@ -410,7 +410,8 @@ theme.plugins = {
-- nvim-cmp -- nvim-cmp
-- https://github.com/hrsh7th/nvim-cmp -- https://github.com/hrsh7th/nvim-cmp
CmpItemKind = { fg = p.iris }, CmpItemKind = { fg = p.iris },
CmpItemAbbr = { fg = p.subtle }, CmpItemMenu = { fg = p.subtle},
CmpItemAbbr = { fg = p.subtle },
CmpItemAbbrMatch = { fg = p.text, style = 'bold' }, CmpItemAbbrMatch = { fg = p.text, style = 'bold' },
CmpItemAbbrMatchFuzzy = { fg = p.text, style = 'bold' }, CmpItemAbbrMatchFuzzy = { fg = p.text, style = 'bold' },
CmpItemAbbrDeprecated = { fg = p.subtle, style = 'strikethrough' }, CmpItemAbbrDeprecated = { fg = p.subtle, style = 'strikethrough' },