return { '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 = { { 't', function() require('neogit').open() end, }, }, cmd = { 'Neogit ' }, }