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.
15 lines
365 B
Lua
15 lines
365 B
Lua
local util = require("catppuccino.utils.util")
|
|
|
|
local M = {}
|
|
|
|
function M.get(cpt)
|
|
return {
|
|
HopNextKey = { bg = cpt.bg, fg = cpt.orange, style = "bold" },
|
|
HopNextKey1 = { bg = cpt.bg, fg = cpt.blue, style = "bold" },
|
|
HopNextKey2 = { bg = cpt.bg, fg = util.darken(cpt.blue, 0.80, cpt.bg) },
|
|
HopUnmatched = { bg = cpt.bg, fg = cpt.comment },
|
|
}
|
|
end
|
|
|
|
return M
|