fixup! fish: add shellabbrs

This commit is contained in:
Guanran Wang 2024-09-16 13:30:23 +08:00
parent c158f2d81b
commit be96257cd6
Signed by: nyancat
GPG key ID: 91F97D9ED12639CF

View file

@ -35,10 +35,19 @@
]; ];
shellAbbrs = { shellAbbrs = {
g = "git";
n = "nvim";
gi = "gitui"; gi = "gitui";
sy = "systemctl"; n = "nvim";
s = "nh os switch";
g = "git";
ga = "git add";
gc = "git commit -m";
gca = "git commit --amend";
gd = "git diff";
gds = "git diff --staged";
gl = "git log";
gp = "git push";
gr = "git rebase -i --autosquash";
}; };
functions = functions =