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/catppuccin/groups/integrations/leap.lua

34 lines
667 B
Lua

local M = {}
local is_prepared
local function set_prepared(val)
is_prepared = val
end
local function get_prepared()
return is_prepared
end
function M.get()
if not get_prepared() then
set_prepared(vim.api.nvim_create_autocmd("ColorScheme", {
callback = function()
if pcall(require, "leap") then
require("leap").init_highlight(true)
end
end,
}))
set_prepared(true)
end
return {
LeapLabelPrimary = { bg = cp.surface1, fg = cp.text },
LeapLabelSecondary = { bg = cp.surface1, fg = cp.text },
LeapBackdrop = { bg = cp.base, fg = cp.overlay0 },
LeapMatch = { bg = cp.base, fg = cp.red, style = { "underline" } },
}
end
return M