diff options
author | Annenpolka <56289203+annenpolka@users.noreply.github.com> | 2022-02-15 17:17:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 09:17:06 +0100 |
commit | 1a81714cb7154a2b1c93300a072d80eb43130a5f (patch) | |
tree | 230765a7206a9c18bfc14a35a4119b701b892bfc /lua/no-clown-fiesta/NvimCmp.lua | |
parent | a59a6812b0d245a8b2da516f8762c15836d83438 (diff) |
feat: add nvim-cmp colors (#1)
Diffstat (limited to 'lua/no-clown-fiesta/NvimCmp.lua')
-rw-r--r-- | lua/no-clown-fiesta/NvimCmp.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/NvimCmp.lua b/lua/no-clown-fiesta/NvimCmp.lua new file mode 100644 index 0000000..9a0752c --- /dev/null +++ b/lua/no-clown-fiesta/NvimCmp.lua @@ -0,0 +1,10 @@ +local NvimCmp = { + CmpItemAbbr = { fg = C.fg }, + CmpItemAbbrDeprecated = { fg = C.orange }, + CmpItemAbbrMatch = { fg = C.info_yellow }, + CmpItemAbbrMatchFuzzy = { fg = C.info_yellow }, + CmpItemMenu = { fg = C.medium_gray }, + CmpItemKind = { fg = C.light_gray }, +} + +return NvimCmp |