mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 06:27:14 +01:00
23 lines
540 B
Lua
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' },
|
|
}
|