feat(gitsign): move gitsign config to gitsign.lua
This commit is contained in:
33
lvim/lua/configs/gitsigns.lua
Normal file
33
lvim/lua/configs/gitsigns.lua
Normal file
@@ -0,0 +1,33 @@
|
||||
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",
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user