blob: 1d01cc06042528d750c0ef52b2e6292bb0445441 (
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.orange, bold = true },
LeapBackdrop = { fg = palette.medium_gray },
}
end
return M
|