Added lazygit integration

This commit is contained in:
alejandro-angulo 2024-08-03 13:57:30 -07:00
parent 2d07e77c77
commit 662e20f797
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
2 changed files with 17 additions and 0 deletions

View file

@ -4,6 +4,7 @@
imports = [
./plugins/cmp.nix
./plugins/gitsigns.nix
./plugins/lazygit.nix
./plugins/lsp.nix
./plugins/lualine.nix
./plugins/rhubarb.nix

View file

@ -0,0 +1,16 @@
{
plugins.lazygit = {
enable = true;
};
keymaps = [
{
action = "<cmd>:LazyGit<CR>";
key = "<leader>lg";
}
{
action = "<cmd>:LazyGitFilter<CR>";
key = "<leader>lc";
}
];
}