neovim: add lazygit

This commit is contained in:
Sridhar Ratnakumar 2024-10-22 18:39:53 -04:00
parent bac640464e
commit ca29bd85dc
2 changed files with 11 additions and 0 deletions

View file

@ -12,6 +12,7 @@ in
imports = [
./nvim-tree.nix
./lazygit.nix
];
# Theme

View file

@ -0,0 +1,10 @@
{
plugins.lazygit.enable = true;
keymaps = [
{
action = "<cmd>LazyGit<CR>";
key = "<leader>gg";
}
];
}