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") - ''; -}