refactor(gitsigns): simplified config

This commit is contained in:
Folke Lemaitre 2022-12-31 17:03:21 +01:00
parent 8834510d40
commit be1befeac2
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -6,12 +6,12 @@ return {
event = "BufReadPre", event = "BufReadPre",
config = { config = {
signs = { signs = {
add = { hl = "GitSignsAdd", text = "", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" }, add = { text = "" },
change = { hl = "GitSignsChange", text = "", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" }, change = { text = "" },
delete = { hl = "GitSignsDelete", text = "", numhl = "GitSignsDeleteNr", linehl = "GitSignsDeleteLn" }, delete = { text = "" },
topdelete = { hl = "GitSignsDelete", text = "", numhl = "GitSignsDeleteNr", linehl = "GitSignsDeleteLn" }, topdelete = { text = "" },
changedelete = { hl = "GitSignsChange", text = "", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" }, changedelete = { text = "" },
untracked = { hl = "GitSignsAdd", text = "", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" }, untracked = { text = "" },
}, },
}, },
}, },