diff --git a/lua/astronomy/scheme.lua b/lua/astronomy/scheme.lua index 23f7a24..7141464 100644 --- a/lua/astronomy/scheme.lua +++ b/lua/astronomy/scheme.lua @@ -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 -- ----------------