From c6e5f4a7ea29851de04b10c6bf8e9a7f7082bf04 Mon Sep 17 00:00:00 2001 From: Smitesh Patil Date: Fri, 3 Sep 2021 09:12:09 +0530 Subject: [PATCH] Define hop colors --- lua/catppuccino/core/integrations/hop.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lua/catppuccino/core/integrations/hop.lua diff --git a/lua/catppuccino/core/integrations/hop.lua b/lua/catppuccino/core/integrations/hop.lua new file mode 100644 index 0000000..34e6ce4 --- /dev/null +++ b/lua/catppuccino/core/integrations/hop.lua @@ -0,0 +1,14 @@ +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