This commit is contained in:
Nicolas Rannou 2024-05-07 15:59:51 +02:00
parent f86f18f27a
commit ebd68fb74c
16 changed files with 662 additions and 808 deletions

View file

@ -0,0 +1,13 @@
-- See `:help gitsigns` to understand what the configuration keys do
return { -- Adds git related signs to the gutter, as well as utilities for managing changes
"lewis6991/gitsigns.nvim",
opts = {
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
},
}