mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: add support for icons in which-key.nvim (#291)
* feat: add icon support for which-key.nvim * fix: incorrect color reference * feat: set WhichKeyIcon hl group to 'pine' by default Used when the colors option is set to false.
This commit is contained in:
parent
15dea44322
commit
d04e235947
1 changed files with 10 additions and 0 deletions
|
|
@ -529,6 +529,16 @@ local function set_highlights()
|
|||
WhichKeyDesc = { fg = palette.gold },
|
||||
WhichKeyFloat = { bg = groups.panel },
|
||||
WhichKeyGroup = { fg = palette.foam },
|
||||
WhichKeyIcon = { fg = palette.pine },
|
||||
WhichKeyIconAzure = { fg = palette.pine },
|
||||
WhichKeyIconBlue = { fg = palette.pine },
|
||||
WhichKeyIconCyan = { fg = palette.foam },
|
||||
WhichKeyIconGreen = { fg = palette.leaf },
|
||||
WhichKeyIconGrey = { fg = palette.subtle },
|
||||
WhichKeyIconOrange = { fg = palette.rose },
|
||||
WhichKeyIconPurple = { fg = palette.iris },
|
||||
WhichKeyIconRed = { fg = palette.love },
|
||||
WhichKeyIconYellow = { fg = palette.gold },
|
||||
WhichKeyNormal = { link = "NormalFloat" },
|
||||
WhichKeySeparator = { fg = palette.subtle },
|
||||
WhichKeyTitle = make_border(palette.foam),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue