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