diff options
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 |