tangled
alpha
login
or
join now
algmyr.se
/
vim-wombat-lua
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
VCSigns specific groups.
algmyr.se
8 months ago
44efabd5
992fd04f
+6
-1
2 changed files
expand all
collapse all
unified
split
lua
wombat_lua
colors.lua
init.lua
+2
lua/wombat_lua/colors.lua
···
17
17
diff_add = "#003300",
18
18
diff_delete = "#440000",
19
19
diff_change = "#222200",
20
20
+
diff_text_add = "#005900",
21
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
38
-
Group.new("DiffText", c.none, c.diff_change, s.underline + s.bold)
38
38
+
Group.new("DiffText", c.none, c.none, s.underline + s.bold)
39
39
+
40
40
+
Group.new("VcsignsDiffTextAdd", c.none, c.diff_text_add)
41
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?