summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-08-30 23:06:56 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-08-30 23:06:56 +0200
commit2c8f0521ea76564377c8f9b635ba098e9a56f8cb (patch)
tree4bbe4de61c8403075d0545e2e9811f208d1eb390
parentb63937a5ebba1ece32f56256c46d166e62aca7fc (diff)
Update Pmenu according to PSA
https://www.reddit.com/r/neovim/comments/1f439w8/psa_for_color_scheme_authors_you_might_want_to/
-rw-r--r--lua/no-clown-fiesta/groups/highlights.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/groups/highlights.lua b/lua/no-clown-fiesta/groups/highlights.lua
index ff5fda0..ffefd44 100644
--- a/lua/no-clown-fiesta/groups/highlights.lua
+++ b/lua/no-clown-fiesta/groups/highlights.lua
@@ -22,7 +22,8 @@ function M.highlight(palette, opts)
bg = opts.transparent and palette.none or palette.bg,
},
Pmenu = { fg = palette.light_gray, bg = palette.accent },
- PmenuSel = { fg = palette.blue, bg = palette.alt_bg },
+ PmenuSel = { bg = palette.blue, fg = palette.gray, reverse = true },
+ PmenuMatchSel = { bg = palette.yellow, fg = palette.gray, reverse = true },
WildMenu = { fg = palette.blue, bg = palette.alt_bg },
CursorLineNr = {
fg = palette.light_gray,