23 lines
544 B
Lua
23 lines
544 B
Lua
return {
|
|
'NeogitOrg/neogit',
|
|
|
|
lazy = true,
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim', -- required
|
|
|
|
-- Only one of these is needed.
|
|
'sindrets/diffview.nvim', -- optional
|
|
'esmuellert/codediff.nvim', -- optional
|
|
|
|
-- Only one of these is needed.
|
|
'nvim-telescope/telescope.nvim', -- optional
|
|
-- 'ibhagwan/fzf-lua', -- optional
|
|
-- 'nvim-mini/mini.pick', -- optional
|
|
-- 'folke/snacks.nvim', -- optional
|
|
},
|
|
cmd = 'Neogit',
|
|
keys = {
|
|
{ '<leader>gg', '<cmd>Neogit<cr>', desc = 'Show Neogit UI' },
|
|
},
|
|
}
|