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.
nvim/lua/catppuccino/core/integrations/hop.lua

15 lines
357 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