feat: add highlight for nvim_cmp (#24)

* feat: add highlight for nvim_cmp

* fix: indentation
This commit is contained in:
Devin 2021-09-29 08:44:21 +08:00 committed by GitHub
commit 55b36b8a36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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