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

16 lines
444 B
Lua

local M = {}
local util = require("catppuccino.utils.util")
function M.get(cp)
return {
CmpItemAbbr = { fg = util.darken(cp.catppuccino0, 0.56) },
CmpItemAbbrDeprecated = { fg = util.darken(cp.catppuccino0, 0.56), stlye = "strikethrough" },
CmpItemAbbrMatch = { fg = cp.fg, style = "bold" },
CmpItemAbbrMatchFuzzy = { fg = cp.fg, style = "bold" },
CmpItemKind = { fg = cp.blue_br },
CmpItemMenu = { fg = cp.fg },
}
end
return M