34 lines
682 B
Lua
34 lines
682 B
Lua
lvim.builtin.gitsigns.opts.signs = {
|
|
add = {
|
|
hl = "GitSignsAdd",
|
|
text = " ┃",
|
|
numhl = "GitSignsAddNr",
|
|
linehl = "GitSignsAddLn",
|
|
},
|
|
change = {
|
|
hl = "GitSignsChange",
|
|
text = " ┃",
|
|
numhl = "GitSignsChangeNr",
|
|
linehl = "GitSignsChangeLn",
|
|
},
|
|
delete = {
|
|
hl = "GitSignsDelete",
|
|
text = " ",
|
|
numhl = "GitSignsDeleteNr",
|
|
linehl = "GitSignsDeleteLn",
|
|
},
|
|
topdelete = {
|
|
hl = "GitSignsDelete",
|
|
text = " ",
|
|
numhl = "GitSignsDeleteNr",
|
|
linehl = "GitSignsDeleteLn",
|
|
},
|
|
changedelete = {
|
|
hl = "GitSignsChange",
|
|
text = " ┃",
|
|
numhl = "GitSignsChangeNr",
|
|
linehl = "GitSignsChangeLn",
|
|
},
|
|
}
|
|
|