From 28a206f3533056382beaa05cee09d01c5334b7ee Mon Sep 17 00:00:00 2001 From: mvllow Date: Tue, 21 Feb 2023 11:42:10 -0600 Subject: [PATCH] feat: distinguish between `CmpItemKind`'s --- lua/rose-pine/theme.lua | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 0e30250..f065f69 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -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 })