mirror of https://github.com/sgoudham/nvim.git
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.
15 lines
399 B
Lua
15 lines
399 B
Lua
local M = {}
|
|
|
|
function M.get(cp)
|
|
return {
|
|
CmpItemAbbr = { fg = cp.katppuccino11 },
|
|
CmpItemAbbrDeprecated = { fg = cp.katppuccino11, stlye = "strikethrough" },
|
|
CmpItemAbbrMatch = { fg = cp.katppuccino10, style = "bold" },
|
|
CmpItemAbbrMatchFuzzy = { fg = cp.katppuccino10, style = "bold" },
|
|
CmpItemKind = { fg = cp.katppuccino9 },
|
|
CmpItemMenu = { fg = cp.katppuccino10 },
|
|
}
|
|
end
|
|
|
|
return M
|