From 7e694468faac1bbcd4a8c68d0795da7374419849 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 30 Jan 2025 23:30:03 +0100 Subject: [PATCH] Ditches lazygit within neovim in favor of neogit --- .../nvim/config/lua/plugins/lazygit.lua | 19 ------------------- .../nvim/config/lua/plugins/which-key.lua | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 home/modules/nvim/config/lua/plugins/lazygit.lua diff --git a/home/modules/nvim/config/lua/plugins/lazygit.lua b/home/modules/nvim/config/lua/plugins/lazygit.lua deleted file mode 100644 index be438f4..0000000 --- a/home/modules/nvim/config/lua/plugins/lazygit.lua +++ /dev/null @@ -1,19 +0,0 @@ -return { - "kdheepak/lazygit.nvim", - cmd = { - "LazyGit", - "LazyGitConfig", - "LazyGitCurrentFile", - "LazyGitFilter", - "LazyGitFilterCurrentFile", - }, - -- optional for floating window border decoration - dependencies = { - "nvim-lua/plenary.nvim", - }, - -- setting the keybinding for LazyGit with 'keys' is recommended in - -- order to load the plugin when the command is run for the first time - keys = { - { "lg", "LazyGit", desc = "LazyGit" }, - }, -} diff --git a/home/modules/nvim/config/lua/plugins/which-key.lua b/home/modules/nvim/config/lua/plugins/which-key.lua index 6b04cf7..541a9d8 100644 --- a/home/modules/nvim/config/lua/plugins/which-key.lua +++ b/home/modules/nvim/config/lua/plugins/which-key.lua @@ -83,7 +83,7 @@ return { desc = "Toggle git line blame", mode = "n", }, - { "gg", "LazyGit", desc = "Opens lazygit", mode = "n" }, + { "gg", "Neogit", desc = "Opens neogit", mode = "n" }, { "glo", "GitLink!",