home-manager manager lazygit

This commit is contained in:
do butterflies cry? 2026-03-03 12:48:35 +10:00
parent 202c801e72
commit 4f88bbff96
Signed by: cry
GPG key ID: F68745A836CA0412
2 changed files with 31 additions and 1 deletions

View file

@ -78,7 +78,6 @@
btop
eza
yazi
lazygit
ripgrep
viddy # modern `watch` command
timg # terminal image (sixel) viewer

View file

@ -87,5 +87,36 @@
];
};
lazygit = {
enable = true;
enableFishIntegration = true;
enableZshIntegration = true;
shellWrapperName = "lg";
settings = {
gui = {
useHunkModeInStagingView = false;
skipDiscardChangeWarning = false;
skipStashWarning = true;
animateExplosion = true; # FUCK YEAHHHHHHHHHHHHHHHHHHHHHHHHH
theme = {
lightTheme = false;
activeBorderColor = ["green" "bold"];
inactiveBorderColor = ["white"];
selectedLineBgColor = ["default"];
};
};
git.pagers = [
{
pager = "delta --dark --pager=never";
}
];
};
};
};
}