mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: distinguish between CmpItemKind's
This commit is contained in:
parent
cc347e2fd5
commit
28a206f353
1 changed files with 6 additions and 8 deletions
|
|
@ -223,8 +223,6 @@ function M._load(options)
|
|||
h('@label', { link = 'Label' })
|
||||
h('@macro', { link = 'Macro' })
|
||||
h('@method', { fg = p.iris })
|
||||
-- h('@modifier', { link = '' })
|
||||
-- h('@namespace', { link = '' })
|
||||
h('@number', { link = 'Number' })
|
||||
h('@operator', { link = 'Operator' })
|
||||
h('@parameter', { fg = p.iris, italic = maybe.italic })
|
||||
|
|
@ -346,13 +344,13 @@ function M._load(options)
|
|||
h('CmpItemAbbrDeprecated', { fg = p.subtle, strikethrough = true })
|
||||
h('CmpItemAbbrMatch', { fg = p.text, bold = true })
|
||||
h('CmpItemAbbrMatchFuzzy', { fg = p.text, bold = true })
|
||||
h('CmpItemKind', { fg = p.iris })
|
||||
h('CmpItemKindClass', { fg = p.gold })
|
||||
h('CmpItemKindFunction', { fg = p.iris })
|
||||
h('CmpItemKindInterface', { fg = p.gold })
|
||||
h('CmpItemKind', { fg = p.subtle })
|
||||
h('CmpItemKindClass', { fg = p.pine })
|
||||
h('CmpItemKindFunction', { fg = p.rose })
|
||||
h('CmpItemKindInterface', { fg = p.foam })
|
||||
h('CmpItemKindMethod', { fg = p.iris })
|
||||
h('CmpItemKindSnippet', { fg = p.iris })
|
||||
h('CmpItemKindVariable', { fg = p.foam })
|
||||
h('CmpItemKindSnippet', { fg = p.gold })
|
||||
h('CmpItemKindVariable', { fg = p.text })
|
||||
|
||||
-- TimUntersberger/neogit
|
||||
h('NeogitDiffAddHighlight', { fg = p.foam, bg = p.highlight_med })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue