blob: caa16b2605c9f7265cb7278eaaacd7b13e1338a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
local M = {}
function M.highlight(palette)
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
|