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