From 56622a860cd1c17eebd027a71895036e120b7a8c Mon Sep 17 00:00:00 2001 From: venus Date: Sun, 31 May 2026 20:41:39 -0500 Subject: [PATCH] added keybinds and modified neogit for more useability --- lua/keybinds.lua | 49 ------------------------------------------ lua/plugins/neogit.lua | 8 ++++++- 2 files changed, 7 insertions(+), 50 deletions(-) diff --git a/lua/keybinds.lua b/lua/keybinds.lua index 050c056..85fad1b 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -75,52 +75,3 @@ vim.keymap.set('n', 'gc' ,'Neogit commit' ,{ desc = 'open Ne - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lua/plugins/neogit.lua b/lua/plugins/neogit.lua index a591330..a325dd8 100644 --- a/lua/plugins/neogit.lua +++ b/lua/plugins/neogit.lua @@ -14,5 +14,11 @@ return { -- add git tui functionality cmd = "Neogit", keys = { { "gg", "Neogit", desc = "Show Neogit UI" } - } + }, + config = function() + local ng = require("neogit") + ng.setup({ + kind = "floating", + }) + end, }