remove lazygit

This commit is contained in:
♥ Minnie ♥ 2025-06-24 19:02:23 +08:00
parent 71e6a2a4df
commit 5141b81e03
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 0 additions and 32 deletions

View file

@ -39,7 +39,6 @@
# Git
./plugins/git/fugitive.nix
./plugins/git/gitsigns.nix
./plugins/git/lazygit.nix
# Utils
./plugins/utils/copilot-chat.nix

View file

@ -1,31 +0,0 @@
{...}: {
plugins.lazygit = {
enable = true;
};
keymaps = [
{
mode = "n";
key = "<leader>gL";
action = "<cmd>LazyGit<cr>";
options = {
desc = "Open LazyGit";
};
}
{
mode = "n";
key = "<leader>glr";
action = {
__raw = "require('telescope').extensions.lazygit.lazygit";
};
options = {
desc = "List repositories";
};
}
];
extraConfigLua = ''
require("telescope").load_extension("lazygit")
'';
}