feat: add colors for nvim-cmp

This commit is contained in:
David JULIEN 2022-05-01 18:29:18 +02:00
parent 9b46e0fa3d
commit a968c3e157
1 changed files with 12 additions and 0 deletions

View File

@ -209,6 +209,18 @@ function M.load_colors(scheme)
LuaSnipFunction = { fg = scheme.magenta, bg = scheme.none, scheme.none },
LuaSnipInsert = { fg = scheme.blue, bg = scheme.none, scheme.none },
----------------
-- CMP COLORS --
----------------
CmpItemKindVariable = { fg = scheme.none, bg = scheme.none, scheme.none },
CmpItemKindClass = { fg = scheme.yellow, bg = scheme.none, scheme.none },
CmpItemKindInterface = { link = "CmpItemKindClass" },
CmpItemKindModule = { link = "CmpItemKindClass" },
CmpItemKindText = { fg = scheme.green, bg = scheme.none, scheme.none },
CmpItemKindKeyword = { fg = scheme.orange, bg = scheme.none, scheme.none },
CmpItemKindFunction = { fg = scheme.blue, bg = scheme.none, scheme.none },
CmpItemKindMethod = { link = "CmpItemKindFunction" },
----------------
-- COQ COLORS --
----------------