.dotfiles/home/.config/nvim/lua/plugs/neogit.lua
Martin Larsson 21e6ce3181 auto-show-console - false was used as a workaround for an error which
was thrown in some large repos where the git command took a long time to
run. This has been fixed by the author of the plugin so I no longer need
it.
2024-10-09 15:37:44 +02:00

11 lines
204 B
Lua

return {
"NeogitOrg/neogit",
dependencies = {
"sindrets/diffview.nvim",
},
event = "VeryLazy",
lazy = true,
config = function()
require("neogit").setup()
end
}