mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
327 B
Lua
13 lines
327 B
Lua
local M = {}
|
|
|
|
function M.get(cp)
|
|
return {
|
|
HopNextKey = { bg = cp.black2, fg = cp.peach, style = "bold,underline" },
|
|
HopNextKey1 = { bg = cp.black2, fg = cp.blue, style = "bold" },
|
|
HopNextKey2 = { bg = cp.black2, fg = cp.teal, style = "bold,italic" },
|
|
HopUnmatched = { bg = cp.black2, fg = cp.gray0 },
|
|
}
|
|
end
|
|
|
|
return M
|