Changed default gitsigns characters

This commit is contained in:
2024-06-17 20:11:14 +10:00
parent 395cc00564
commit 80a665fec2
2 changed files with 12 additions and 4 deletions

View File

@@ -1,6 +1,14 @@
return {
"lewis6991/gitsigns.nvim",
config = function()
require("gitsigns").setup()
require("gitsigns").setup({
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
})
end
}