this repo has no description

VCSigns specific groups.

+6 -1
+2
lua/wombat_lua/colors.lua
··· 17 17 diff_add = "#003300", 18 18 diff_delete = "#440000", 19 19 diff_change = "#222200", 20 + diff_text_add = "#005900", 21 + diff_text_delete = "#770000", 20 22 sign_add = "#33cc33", 21 23 sign_change = "#cccc33", 22 24 sign_change_delete = "#ee9933",
+4 -1
lua/wombat_lua/init.lua
··· 35 35 Group.new("DiffAdd", c.none, c.diff_add) 36 36 Group.new("DiffDelete", c.none, c.diff_delete) 37 37 Group.new("DiffChange", c.none, c.diff_change) 38 - Group.new("DiffText", c.none, c.diff_change, s.underline + s.bold) 38 + Group.new("DiffText", c.none, c.none, s.underline + s.bold) 39 + 40 + Group.new("VcsignsDiffTextAdd", c.none, c.diff_text_add) 41 + Group.new("VcsignsDiffTextDelete", c.none, c.diff_text_delete) 39 42 40 43 -- Unsure why I have to specify the bg here, 41 44 -- seems the default uses the diff line color?