From 21e6ce318104c30a7a1d037c11721d9717ce982d Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Wed, 9 Oct 2024 15:37:44 +0200 Subject: [PATCH] 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. --- home/.config/nvim/lua/plugs/neogit.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/home/.config/nvim/lua/plugs/neogit.lua b/home/.config/nvim/lua/plugs/neogit.lua index 7c66db3..04595f1 100644 --- a/home/.config/nvim/lua/plugs/neogit.lua +++ b/home/.config/nvim/lua/plugs/neogit.lua @@ -6,8 +6,6 @@ return { event = "VeryLazy", lazy = true, config = function() - require("neogit").setup { - auto_show_console = false, - } + require("neogit").setup() end }