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
437 B
Lua
16 lines
437 B
Lua
3 years ago
|
local M = {}
|
||
|
local util = require("catppuccino.utils.util")
|
||
|
|
||
|
function M.get(cpt)
|
||
|
return {
|
||
|
CmpItemAbbr = { fg = util.darken(cpt.white, 0.56) },
|
||
|
CmpItemAbbrDeprecated = { fg = util.darken(cpt.white, 0.56), stlye = "strikethrough" },
|
||
|
CmpItemAbbrMatch = { fg = cpt.fg, style = "bold" },
|
||
|
CmpItemAbbrMatchFuzzy = { fg = cpt.fg, style = "bold" },
|
||
|
CmpItemKind = { fg = cpt.blue_br },
|
||
|
CmpItemMenu = { fg = cpt.fg },
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|