nvim/lua/plugins/neogit.lua
Oliver Hartmann c966acfbe8 added neogit
2023-06-22 14:20:11 +02:00

25 lines
420 B
Lua

return {
'TimUntersberger/neogit',
dependencies = {
'nvim-lua/plenary.nvim',
'sindrets/diffview.nvim'
},
config = function()
local neogit = require('neogit')
neogit.setup {
integrations = {
diffview = true
},
}
end,
keys = {
{
'<space>t',
function()
require('neogit').open()
end
}
},
cmd = { 'Neogit ' }
}