mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: Add more highlights to nvim-cmp (#37)
* feat: Add more highlights to nvim-cmp This should close #36. For information sake, the colors and the arrangement is very personal, and can be subject to changes. Feel free to complete the list of supported CmpItemKind from there: https://github.com/hrsh7th/nvim-cmp/blob/main/lua/cmp/types/lsp.lua#L108 * fix: Remove subtle hl for CmpItemKinds
This commit is contained in:
parent
c5d27ccd62
commit
8a1fe15416
1 changed files with 6 additions and 0 deletions
|
|
@ -414,6 +414,12 @@ theme.plugins = {
|
|||
CmpItemAbbrMatch = { fg = p.text, style = 'bold' },
|
||||
CmpItemAbbrMatchFuzzy = { fg = p.text, style = 'bold' },
|
||||
CmpItemAbbrDeprecated = { fg = p.subtle, style = 'strikethrough' },
|
||||
CmpItemKindVariable = { fg = p.foam },
|
||||
CmpItemKindClass = { fg = p.gold },
|
||||
CmpItemKindInterface = { fg = p.gold },
|
||||
CmpItemKindFunction = { fg = p.iris },
|
||||
CmpItemKindMethod = { fg = p.iris },
|
||||
CmpItemKindSnippet = { fg = p.iris },
|
||||
|
||||
-- neogit
|
||||
-- https://github.com/TimUntersberger/neogit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue