summaryrefslogtreecommitdiff
path: root/lua/onedarker/highlights.lua
diff options
context:
space:
mode:
authorAbouzar Parvan <[email protected]>2021-10-09 17:51:32 +0330
committerGitHub <[email protected]>2021-10-09 17:51:32 +0330
commit484c618d09150980746afd37b34b96f1ce15b81d (patch)
tree609276fdfb76e500ec062bc499e69d0f35499dcb /lua/onedarker/highlights.lua
parentb524100f016de6b934894547d48f9ef811902397 (diff)
feat: support nvim-cmp floating menu highlights (#1719)
Diffstat (limited to 'lua/onedarker/highlights.lua')
-rw-r--r--lua/onedarker/highlights.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/onedarker/highlights.lua b/lua/onedarker/highlights.lua
index dbdd2416..28e7c07f 100644
--- a/lua/onedarker/highlights.lua
+++ b/lua/onedarker/highlights.lua
@@ -94,6 +94,14 @@ local highlights = {
TabLine = { fg = C.light_gray, bg = C.alt_bg },
TabLineSel = { fg = C.fg, bg = C.alt_bg },
TabLineFill = { fg = C.fg, bg = C.alt_bg },
+ CmpDocumentation = { fg = C.fg, bg = C.none },
+ CmpDocumentationBorder = { fg = C.fg_dark, bg = C.none },
+ CmpItemAbbr = { fg = C.fg, bg = C.none },
+ CmpItemAbbrDeprecated = { fg = C.gray, bg = C.none },
+ CmpItemAbbrMatch = { fg = C.cyan, bg = C.none },
+ CmpItemAbbrMatchFuzzy = { fg = C.cyan, bg = C.none },
+ CmpItemKind = { fg = C.blue, bg = C.none },
+ CmpItemMenu = { fg = C.light_gray, bg = C.none },
}
return highlights