nvim-config/lua/plugins/gitsigns.lua
2024-12-07 03:41:14 -05:00

14 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 = '~' },
},
},
},
}