Files
nvim/lua/plugins/git.lua
2025-05-09 23:08:10 +02:00

23 lines
540 B
Lua

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 = '~' },
},
},
},
{
'tpope/vim-fugitive',
keys = {
{ '<leader>gs', ':vertical Git<CR>', { desc = '[g]it [s]tatus' } },
},
},
{ 'tpope/vim-rhubarb' },
{ 'sindrets/diffview.nvim' },
}