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.
16 lines
483 B
Lua
16 lines
483 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.catppuccino11, style = "bold" },
|
|
CmpItemAbbrMatchFuzzy = { fg = cp.catppuccino11, style = "bold" },
|
|
CmpItemKind = { fg = cp.catppuccino10 },
|
|
CmpItemMenu = { fg = cp.catppuccino11 },
|
|
}
|
|
end
|
|
|
|
return M
|