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
338 B
Lua
13 lines
338 B
Lua
3 years ago
|
local M = {}
|
||
|
|
||
2 years ago
|
function M.get()
|
||
3 years ago
|
return {
|
||
2 years ago
|
HopNextKey = { bg = cp.base, fg = cp.peach, style = { "bold", "underline" } },
|
||
2 years ago
|
HopNextKey1 = { bg = cp.base, fg = cp.blue, style = { "bold" } },
|
||
2 years ago
|
HopNextKey2 = { bg = cp.base, fg = cp.teal, style = { "bold", "italic" } },
|
||
3 years ago
|
HopUnmatched = { bg = cp.base, fg = cp.overlay0 },
|
||
3 years ago
|
}
|
||
|
end
|
||
|
|
||
|
return M
|