25 lines
440 B
Lua
25 lines
440 B
Lua
return {
|
|
branch = 'master',
|
|
'TimUntersberger/neogit',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'sindrets/diffview.nvim',
|
|
},
|
|
config = function()
|
|
local neogit = require('neogit')
|
|
neogit.setup({
|
|
integrations = {
|
|
diffview = true,
|
|
},
|
|
graph_style = 'unicode',
|
|
})
|
|
end,
|
|
keys = {
|
|
{
|
|
'<space>t',
|
|
function() require('neogit').open() end,
|
|
},
|
|
},
|
|
cmd = { 'Neogit ' },
|
|
}
|