From 752a16107e1727fb75d7f17c21412572ddf8c905 Mon Sep 17 00:00:00 2001 From: lucy Date: Sun, 1 Feb 2026 23:10:23 +0100 Subject: [PATCH] add harpoon colors --- templates/kitty.conf | 2 +- templates/nvim.lua | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/templates/kitty.conf b/templates/kitty.conf index b4e9d2c..d44ab1c 100644 --- a/templates/kitty.conf +++ b/templates/kitty.conf @@ -1,7 +1,7 @@ # The kitty terminal template for matugen cursor {{colors.primary.default.hex}} -background {{colors.background.default.hex }} +background {{colors.background.default.hex | set_saturation: 2.0 }} foreground {{colors.on_background.default.hex}} color0 {{colors.surface.default.hex}} diff --git a/templates/nvim.lua b/templates/nvim.lua index 7bc77d9..819f79d 100644 --- a/templates/nvim.lua +++ b/templates/nvim.lua @@ -38,7 +38,12 @@ hl("Cursor", { fg = c.bg, bg = c.cursor }) hl("LineNr", { fg = c.c8 }) hl("CursorLine", { bg = c.c0 }) hl("StatusLine", { fg = c.fg, bg = c.c0 }) - +-- Harpoon Colors +hl("HarpoonInactive", { fg = c.fg, bg = c.bg }) +hl("HarpoonActive", { fg = c.bg, bg = c.c2 }) +hl("HarpoonNumberInactive", { fg = c.fg, bg = c.bg }) +hl("HarpoonNumberActive", { fg = c.bg, bg = c.c2 }) +hl("TabLineFill", { fg = c.fg, bg = c.bg }) -- Syntax hl("Comment", { fg = c.c8, italic = true }) hl("Constant", { fg = c.c3 })