summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/groups/leap.lua
blob: 1a0c3c0a4b70eb469ea3d1881583c350edb1da92 (plain)
1
2
3
4
5
6
7
8
9
10
11
local M = {}

function M.highlight(palette, opts)
  return {
    LeapMatch = { fg = palette.cyan, bold = true },
    LeapLabel = { fg = palette.red, bold = true },
    LeapBackdrop = { fg = palette.medium_gray },
  }
end

return M