blob: c2abfb6b8cdefea00ae98cc1ac6d61c973425bc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
local M = {}
function M.highlight(palette)
return {
CmpItemAbbr = { fg = palette.fg },
CmpItemAbbrDeprecated = { fg = palette.orange },
CmpItemAbbrMatch = { fg = palette.info_yellow },
CmpItemAbbrMatchFuzzy = { fg = palette.info_yellow },
CmpItemMenu = { fg = palette.medium_gray },
CmpItemKind = { fg = palette.light_gray },
}
end
return M
|