diff options
Diffstat (limited to 'lua/no-clown-fiesta/whichkey.lua')
| -rw-r--r-- | lua/no-clown-fiesta/whichkey.lua | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/whichkey.lua b/lua/no-clown-fiesta/whichkey.lua new file mode 100644 index 0000000..66ac153 --- /dev/null +++ b/lua/no-clown-fiesta/whichkey.lua @@ -0,0 +1,13 @@ +local M = {} + +function M.highlight(palette) +  return { +    WhichKey = { fg = palette.light_gray }, +    WhichKeySeperator = { fg = palette.gray }, +    WhichKeyGroup = { fg = palette.red }, +    WhichKeyDesc = { fg = palette.light_gray }, +    WhichKeyFloat = { bg = palette.bg }, +  } +end + +return M  |