nvim/lua/plugins/neogit.lua
2025-04-17 21:58:34 +02:00

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 ' },
}