From 92cd3f78c17a311647d3dd7233cfcf0cc3146c5b Mon Sep 17 00:00:00 2001 From: 409 Date: Tue, 2 Jul 2024 03:47:00 +0200 Subject: [PATCH] feat: improved Gitsigns preview_hunk visuals --- lua/409/plugins/theme.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/409/plugins/theme.lua b/lua/409/plugins/theme.lua index 068f233..1a2ea4a 100644 --- a/lua/409/plugins/theme.lua +++ b/lua/409/plugins/theme.lua @@ -22,6 +22,8 @@ return { vim.api.nvim_set_hl(0, "PmenuSbar", { link = "Normal" }) vim.api.nvim_set_hl(0, "CmpPmenuBorder", { fg = catppuccin_colors.surface2 }) vim.api.nvim_set_hl(0, "MiniIndentscopeSymbol", { fg = catppuccin_colors.surface2 }) + vim.api.nvim_set_hl(0, "DiffAdd", { fg = catppuccin_colors.green, bg = "none" }) + vim.api.nvim_set_hl(0, "DiffDelete", { fg = catppuccin_colors.red, bg = "none" }) end }, }