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
374 B
Lua
13 lines
374 B
Lua
local M = {}
|
|
|
|
function M.get(cp)
|
|
return {
|
|
HopNextKey = { bg = cp.catppuccin1, fg = cp.catppuccin6, style = "bold,underline" },
|
|
HopNextKey1 = { bg = cp.catppuccin1, fg = cp.catppuccin9, style = "bold" },
|
|
HopNextKey2 = { bg = cp.catppuccin1, fg = cp.catppuccin7, style = "bold,italic" },
|
|
HopUnmatched = { bg = cp.catppuccin1, fg = cp.catppuccin11 },
|
|
}
|
|
end
|
|
|
|
return M
|