feat: add lazygit
This commit is contained in:
parent
5f9aa7aa22
commit
32cc39c400
2 changed files with 16 additions and 1 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
14
modules/programs/nvim/new_plugins/lazygit.nix
Normal file
14
modules/programs/nvim/new_plugins/lazygit.nix
Normal 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 = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue