kickstart.nvim/lua/plugins/git.lua

20 lines
376 B
Lua

-- Git integration plugins
return {
-- Git commands in nvim
'tpope/vim-fugitive',
-- Git signs in the gutter
{
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
},
}