diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-05-10 01:49:52 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-05-10 01:49:52 +0200 |
commit | 50d9acaf8d9749610a6168f73cb20cb4b84c1ec9 (patch) | |
tree | 669ff936cc8cc66c3507ecae045acb5f7765d887 /lua/no-clown-fiesta/groups/leap.lua | |
parent | 5d7fec862868b39a2d004c4945b127253efdc8b6 (diff) | |
parent | 9dcbcbb85c0dccd10b41453cc01cb8f3a49735aa (diff) |
Merge branch 'master' of github.com:aktersnurra/no-clown-fiesta.nvim
Diffstat (limited to 'lua/no-clown-fiesta/groups/leap.lua')
-rw-r--r-- | lua/no-clown-fiesta/groups/leap.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/leap.lua b/lua/no-clown-fiesta/groups/leap.lua new file mode 100644 index 0000000..5dfd394 --- /dev/null +++ b/lua/no-clown-fiesta/groups/leap.lua @@ -0,0 +1,12 @@ +local M = {} + +function M.highlight(palette, opts) + return { + LeapMatch = { fg = palette.cyan, bold = true }, + LeapLabelPrimary = { fg = palette.red, bold = true }, + LeapLabelSecondary = { fg = palette.gray_blue }, + LeapBackdrop = { fg = palette.gray }, + } +end + +return M |