You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim/lua/catppuccino/core/integrations/cmp.lua

15 lines
399 B
Lua

local M = {}
function M.get(cp)
return {
CmpItemAbbr = { fg = cp.catppuccino12 },
CmpItemAbbrDeprecated = { fg = cp.catppuccino12, stlye = "strikethrough" },
CmpItemAbbrMatch = { fg = cp.catppuccino11, style = "bold" },
CmpItemAbbrMatchFuzzy = { fg = cp.catppuccino11, style = "bold" },
CmpItemKind = { fg = cp.katppuccino9 },
CmpItemMenu = { fg = cp.catppuccino11 },
}
end
return M