kickstart.nvim/lua/plugins/gitsigns.lua

15 lines
298 B
Lua

return {
{ -- Add git changes to gutter
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
},
}