Dotfiles/vim/theme/cyberqueer.nvim/lua/cyberdream/extensions/leap.lua

18 lines
438 B
Lua

local M = {}
--- Get extension configuration
--- @param opts Config
--- @param t CyberdreamPalette
function M.get(opts, t)
opts = opts or {}
local highlights = {
LeapMatch = { fg = t.fg, bg = t.magenta },
LeapLabelPrimary = { fg = t.blue, bg = t.bg, bold = true },
LeapLabelSecondary = { fg = t.green, bg = t.bg },
LeapBackdrop = { fg = t.bg_highlight },
}
return highlights
end
return M