kickstart.nvim/lua/custom/plugins/gitsigns.lua

17 lines
395 B
Lua

return { -- Adds git related signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
opts = {
current_line_blame = true,
yadm = {
enable = true,
},
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
}