From 17a1e0c788fa3c28c7336198c4962e1834c48d3d Mon Sep 17 00:00:00 2001 From: quirinecker Date: Thu, 25 Dec 2025 09:02:27 +0100 Subject: [PATCH] fugitive things are opening in a new tab now. At least the 2 most important ones. --- homemanager/neovim/lua/plugins/spec/fugitive.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homemanager/neovim/lua/plugins/spec/fugitive.lua b/homemanager/neovim/lua/plugins/spec/fugitive.lua index 70ff682..8c7ef67 100644 --- a/homemanager/neovim/lua/plugins/spec/fugitive.lua +++ b/homemanager/neovim/lua/plugins/spec/fugitive.lua @@ -1,12 +1,12 @@ return { 'tpope/vim-fugitive', keys = { - { 'gg', ':Git', 'Git Status' }, + { 'gg', ':tab Git', 'Git Status' }, { 'gc', function() if vim.bo.filetype == 'fugitive' then vim.cmd.close() end - vim.cmd("Git commit") + vim.cmd("tab Git commit") end, '(g)it (c)ommit' } }, cmd = {