From 509de4b7b7117b023fed2b12bbb6cd00218cab9d Mon Sep 17 00:00:00 2001
From: Gregory Leeman <gl6@sanger.ac.uk>
Date: Tue, 4 Jun 2024 17:01:17 +0100
Subject: [PATCH] lazygit

---
 lua/solarized/themes/default/editor.lua | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lua/solarized/themes/default/editor.lua b/lua/solarized/themes/default/editor.lua
index 756290b..ccd0bb7 100644
--- a/lua/solarized/themes/default/editor.lua
+++ b/lua/solarized/themes/default/editor.lua
@@ -105,4 +105,7 @@ return function(c, config)
   set_hl('WildMenu', { fg = c.base2, bg = c.base02 }) -- Current match in 'wildmenu' completion.
   set_hl('WinBar', { link = 'Pmenu' }) -- Window bar of current window.
   set_hl('WinBarNC', { link = 'WinBar' }) -- Window bar of not-current windows.
+  set_hl('GitGutterAdd', { fg = c.add }) -- Used for the text of 'add' signs
+  set_hl('GitGutterChange', { fg = c.change }) -- Used for the text of 'change' signs
+  set_hl('GitGutterDelete', { fg = c.delete }) -- Used for the text of 'delete' signs
 end