tangled
alpha
login
or
join now
seiso.moe
/
nvim
0
fork
atom
my neovim configuration
0
fork
atom
overview
issues
pulls
pipelines
update gitsigns config
seiso.moe
2 years ago
756d39b3
c44a0db4
+6
-42
1 changed file
expand all
collapse all
unified
split
lua
ptero
configs
gitsigns.lua
+6
-42
lua/ptero/configs/gitsigns.lua
reviewed
···
6
6
7
7
gitsigns.setup({
8
8
signs = {
9
9
-
add = {
10
10
-
hl = "GitSignsAdd",
11
11
-
text = icons.git.LineAdded,
12
12
-
numhl = "GitSignsAddNr",
13
13
-
linehl = "GitSignsAddLn",
14
14
-
},
15
15
-
change = {
16
16
-
hl = "GitSignsChange",
17
17
-
text = icons.git.LineModified,
18
18
-
numhl = "GitSignsChangeNr",
19
19
-
linehl = "GitSignsChangeLn",
20
20
-
},
21
21
-
delete = {
22
22
-
hl = "GitSignsDelete",
23
23
-
text = icons.git.LineRemoved,
24
24
-
numhl = "GitSignsDeleteNr",
25
25
-
linehl = "GitSignsDeleteLn",
26
26
-
},
27
27
-
topdelete = {
28
28
-
hl = "GitSignsDelete",
29
29
-
text = icons.ui.Triangle,
30
30
-
numhl = "GitSignsDeleteNr",
31
31
-
linehl = "GitSignsDeleteLn",
32
32
-
},
33
33
-
changedelete = {
34
34
-
hl = "GitSignsChange",
35
35
-
text = icons.ui.BoldLineLeft,
36
36
-
numhl = "GitSignsChangeNr",
37
37
-
linehl = "GitSignsChangeLn",
38
38
-
},
39
39
-
untracked = {
40
40
-
hl = "GitSignsAdd",
41
41
-
text = icons.git.LineDeleted,
42
42
-
numhl = "GitSignsAddNr",
43
43
-
linehl = "GitSignsAddLn",
44
44
-
},
9
9
+
add = { text = icons.git.LineAdded },
10
10
+
change = { text = icons.git.LineModified },
11
11
+
delete = { text = icons.git.LineRemoved },
12
12
+
topdelete = { text = icons.ui.Triangle },
13
13
+
changedelete = { text = icons.ui.BoldLineLeft },
14
14
+
untracked = { text = icons.git.LineDeleted },
45
15
},
46
16
signcolumn = true,
47
17
numhl = false,
···
59
29
delay = 1000,
60
30
ignore_whitespace = false,
61
31
},
62
62
-
current_line_blame_formatter_opts = {
63
63
-
relative_time = false,
64
64
-
},
65
32
sign_priority = 6,
66
33
update_debounce = 100,
67
34
status_formatter = nil,
···
72
39
relative = "cursor",
73
40
row = 0,
74
41
col = 1,
75
75
-
},
76
76
-
yadm = {
77
77
-
enable = false,
78
42
},
79
43
})
80
44