mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: add highlight for nvim_cmp (#24)
* feat: add highlight for nvim_cmp * fix: indentation
This commit is contained in:
parent
d8ca0bc95e
commit
6489d7cc62
1 changed files with 8 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue