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
383 B
Lua
13 lines
383 B
Lua
local M = {}
|
|
|
|
function M.get(cp)
|
|
return {
|
|
HopNextKey = { bg = cp.catppuccino2, fg = cp.catppuccino7, style = "bold,underline" },
|
|
HopNextKey1 = { bg = cp.catppuccino2, fg = cp.catppuccino10, style = "bold" },
|
|
HopNextKey2 = { bg = cp.catppuccino2, fg = cp.catppuccino8, style = "bold,italic" },
|
|
HopUnmatched = { bg = cp.catppuccino2, fg = cp.catppuccino12 },
|
|
}
|
|
end
|
|
|
|
return M
|