zsh: enable and create git alias

This commit is contained in:
Khaïs COLIN 2024-07-14 20:06:22 +02:00
parent b887605a43
commit 081c770a0b

View file

@ -39,4 +39,16 @@ in {
# better diffs
delta.enable = true;
};
programs.zsh = {
enable = true;
enableVteIntegration = true;
shellAliases = {
gc = "git commit -v";
ga = "git add";
gst = "git status";
gp = "git push";
gd = "git diff";
};
};
}