diff options
Diffstat (limited to 'lua/no-clown-fiesta')
| -rw-r--r-- | lua/no-clown-fiesta/nvim-cmp.lua | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/no-clown-fiesta/nvim-cmp.lua b/lua/no-clown-fiesta/nvim-cmp.lua index c2abfb6..364af5b 100644 --- a/lua/no-clown-fiesta/nvim-cmp.lua +++ b/lua/no-clown-fiesta/nvim-cmp.lua @@ -3,9 +3,9 @@ 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 }, +    CmpItemAbbrDeprecated = { fg = palette.red }, +    CmpItemAbbrMatch = { fg = palette.orange }, +    CmpItemAbbrMatchFuzzy = { fg = palette.orange },      CmpItemMenu = { fg = palette.medium_gray },      CmpItemKind = { fg = palette.light_gray },    }  |