diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-16 10:58:07 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-16 10:58:07 +0100 |
commit | 06ce7367cc62d6b565b8178781ea21dd559f6daa (patch) | |
tree | 65d1752b006f0db302de9d08d4266f0666240a8e /lua/no-clown-fiesta | |
parent | 43f5ce263f2a390d202e7d009a913271b89d8d10 (diff) |
Add hop color scheme
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/Hop.lua | 8 | ||||
-rw-r--r-- | lua/no-clown-fiesta/init.lua | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/Hop.lua b/lua/no-clown-fiesta/Hop.lua new file mode 100644 index 0000000..7fa2062 --- /dev/null +++ b/lua/no-clown-fiesta/Hop.lua @@ -0,0 +1,8 @@ +local Hop = { + HopNextKey = { fg = C.yellow }, + HopNextKey1 = { fg = C.blue }, + HopNextKey2 = { fg = C.gray_blue }, + HopUnmatched = { fg = C.gray }, +} + +return Hop diff --git a/lua/no-clown-fiesta/init.lua b/lua/no-clown-fiesta/init.lua index 2c0edaf..b597b44 100644 --- a/lua/no-clown-fiesta/init.lua +++ b/lua/no-clown-fiesta/init.lua @@ -11,6 +11,7 @@ Config = require("no-clown-fiesta.config") C = require("no-clown-fiesta.palette") local Git = require("no-clown-fiesta.Git") +local Hop = require("no-clown-fiesta.Hop") local highlights = require("no-clown-fiesta.highlights") local LSP = require("no-clown-fiesta.LSP") local markdown = require("no-clown-fiesta.markdown") @@ -19,6 +20,7 @@ local Whichkey = require("no-clown-fiesta.Whichkey") local skeletons = { Git, + Hop, highlights, markdown, LSP, |