feat: add lazygit

This commit is contained in:
Moritz Böhme 2024-10-24 11:47:19 +02:00
parent 5f9aa7aa22
commit 32cc39c400
Signed by: moritz
GPG key ID: 970C6E89EB0547A9
2 changed files with 16 additions and 1 deletions

View file

@ -241,15 +241,16 @@ in
which-nix
# utils
(viu.override { withSixel = true; })
bat
cht-sh
f
fd
gi
lazygit
parallel
ripgrep
vim
(viu.override { withSixel = true; })
wget
];

View file

@ -0,0 +1,14 @@
_:
{
home-manager.users.moritz.programs.nixvim = {
keymaps = [
{ key = "<leader>g"; action = "<cmd>LazyGit<cr>"; options.desc = "Lazygit"; }
];
plugins.lazygit = {
enable = true;
settings = { };
};
};
}