feat: add highlight for nvim_cmp

This commit is contained in:
ikws4 2021-09-28 21:58:54 +08:00
commit 1dafe784cc

View file

@ -336,6 +336,14 @@ theme.plugins = {
-- indent-blankline.nvim
-- https://github.com/lukas-reineke/indent-blankline.nvim
IndentBlanklineChar = { fg = p.subtle },
-- nvim-cmp
-- https://github.com/hrsh7th/nvim-cmp
CmpItemKind = { fg = p.iris },
CmpItemAbbr = { fg = p.subtle },
CmpItemAbbrMatch = { fg = p.text, style = 'bold' },
CmpItemAbbrMatchFuzzy = { fg = p.text, style = 'bold' },
CmpItemAbbrDeprecated = { fg = p.subtle, style = 'strikethrough' },
}
return theme