From 5141b81e03dbcc3651eac36c946d33b18e2f4da1 Mon Sep 17 00:00:00 2001 From: jasmine Date: Tue, 24 Jun 2025 19:02:23 +0800 Subject: [PATCH] remove lazygit --- config/default.nix | 1 - config/plugins/git/lazygit.nix | 31 ------------------------------- 2 files changed, 32 deletions(-) delete mode 100644 config/plugins/git/lazygit.nix diff --git a/config/default.nix b/config/default.nix index 06c1b19..98a962d 100644 --- a/config/default.nix +++ b/config/default.nix @@ -39,7 +39,6 @@ # Git ./plugins/git/fugitive.nix ./plugins/git/gitsigns.nix - ./plugins/git/lazygit.nix # Utils ./plugins/utils/copilot-chat.nix diff --git a/config/plugins/git/lazygit.nix b/config/plugins/git/lazygit.nix deleted file mode 100644 index 6f92f92..0000000 --- a/config/plugins/git/lazygit.nix +++ /dev/null @@ -1,31 +0,0 @@ -{...}: { - plugins.lazygit = { - enable = true; - }; - - keymaps = [ - { - mode = "n"; - key = "gL"; - action = "LazyGit"; - options = { - desc = "Open LazyGit"; - }; - } - - { - mode = "n"; - key = "glr"; - action = { - __raw = "require('telescope').extensions.lazygit.lazygit"; - }; - options = { - desc = "List repositories"; - }; - } - ]; - - extraConfigLua = '' - require("telescope").load_extension("lazygit") - ''; -}