feat: add more git abbreviations

nixos
Moritz Böhme 2024-07-01 10:14:11 +02:00
parent 891283aa43
commit 72def5c785
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
1 changed files with 10 additions and 4 deletions

View File

@ -29,18 +29,24 @@ in
config = mkIf cfg.enable {
my.shell.abbreviations = {
g = "git";
gC = "git clone";
gF = "git pull";
gS = "git switch";
ga = "git add";
gap = "git add --patch";
gr = "git restore";
grp = "git restore --patch";
gb = "git branch";
gc = "git commit";
gco = "git checkout";
gd = "git diff";
gds = "git diff --staged";
gp = "git push";
gf = "git fetch";
gF = "git pull";
gp = "git push";
gr = "git restore";
grm = "git rm --cached";
grp = "git restore --patch";
grps = "git restore --patch --staged";
grs = "git restore --staged";
gs = "git status";
};
home-manager.users.moritz = {