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 which-nix
# utils # utils
(viu.override { withSixel = true; })
bat bat
cht-sh cht-sh
f f
fd fd
gi gi
lazygit
parallel parallel
ripgrep ripgrep
vim vim
(viu.override { withSixel = true; })
wget 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 = { };
};
};
}