diff options
| author | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:41:15 -0500 |
|---|---|---|
| committer | notken12 <kendotzhou@gmail.com> | 2022-11-08 21:41:15 -0500 |
| commit | 3d998586b168453b13f4de2c3cbaec723e1720fd (patch) | |
| tree | 0da5f4e4ef3efcda0990cfd4f89e7a27abad3389 /lua/chocolate | |
| parent | change cursorline and cursorcolumn to lighter (diff) | |
whichkey
Diffstat (limited to 'lua/chocolate')
| -rw-r--r-- | lua/chocolate/theme.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/chocolate/theme.lua b/lua/chocolate/theme.lua index d8f194b..ce00e6b 100644 --- a/lua/chocolate/theme.lua +++ b/lua/chocolate/theme.lua @@ -166,11 +166,12 @@ theme.set_highlights = function() hl(0, "markdownEscape", { fg = c.yellow, bg = 'NONE' }) -- Whichkey - hl(0, "WhichKey", { fg = c.purple, bg = 'NONE' }) - hl(0, "WhichKeySeperator", { fg = c.green, bg = 'NONE' }) - hl(0, "WhichKeyGroup", { fg = c.blue, bg = 'NONE' }) - hl(0, "WhichKeyDesc", { fg = c.cyan, bg = 'NONE' }) - hl(0, "WhichKeyFloat", { fg = 'NONE', bg = c.base01 }) + hl(0, "WhichKey", { fg = c.blue, bg = 'NONE' }) + hl(0, "WhichKeySeperator", { fg = c.light_grey, bg = 'NONE' }) + hl(0, "WhichKeyDesc", { fg = c.red, bg = 'NONE' }) + hl(0, "WhichKeyGroup", { fg = c.green, bg = 'NONE' }) + hl(0, "WhichKeyValue", { fg = c.green, bg = 'NONE' }) + hl(0, "WhichKeyFloat", { link = 'NormalFloat' }) -- Git hl(0, "SignAdd", { fg = c.green, bg = 'NONE' }) @@ -336,7 +337,6 @@ theme.set_highlights = function() -- Illuminate hl(0, "IlluminatedWordText", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) - hl(0, "IlluminatedWordRead", { fg = 'NONE', bg = c.base02, sp = 'NONE', }) end return theme
\ No newline at end of file |