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