feat: distinguish between CmpItemKind's

This commit is contained in:
mvllow 2023-02-21 11:42:10 -06:00
commit 28a206f353
No known key found for this signature in database

View file

@ -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 })