blob: 65e0dab7953f88e422b53a67070c9bd8a3781577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette, opts)
return {
HopNextKey = { fg = palette.cyan, bold = true },
HopNextKey1 = { fg = palette.red, bold = true },
HopNextKey2 = { fg = palette.gray_blue },
HopUnmatched = { fg = palette.gray },
}
end
return M
|