diff options
author | Luc Sinet <[email protected]> | 2021-08-01 12:02:19 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-01 10:02:19 +0000 |
commit | 341a17daa60562f553e41c4c6792a6c917d8d9ef (patch) | |
tree | 4dc4703c55b27d097756fb170b51e22c475f5d6c /lua/spacegray/Whichkey.lua | |
parent | e2dd993ce753f8d28e6c32c4697ba51cc8ace2bb (diff) |
Fix formatting issues (#1200)
Diffstat (limited to 'lua/spacegray/Whichkey.lua')
-rw-r--r-- | lua/spacegray/Whichkey.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/spacegray/Whichkey.lua b/lua/spacegray/Whichkey.lua index 7b2a11a0..5d1ae7ce 100644 --- a/lua/spacegray/Whichkey.lua +++ b/lua/spacegray/Whichkey.lua @@ -1,9 +1,9 @@ local Whichkey = { - WhichKey = {fg = C.purple, }, - WhichKeySeperator = {fg = C.green, }, - WhichKeyGroup = {fg = C.blue, }, - WhichKeyDesc = {fg = C.light_blue, }, - WhichKeyFloat = {bg = C.dark, }, + WhichKey = { fg = C.purple }, + WhichKeySeperator = { fg = C.green }, + WhichKeyGroup = { fg = C.blue }, + WhichKeyDesc = { fg = C.light_blue }, + WhichKeyFloat = { bg = C.dark }, } -return Whichkey
\ No newline at end of file +return Whichkey |