fixup! fish: add shellabbrs
This commit is contained in:
parent
c158f2d81b
commit
be96257cd6
1 changed files with 12 additions and 3 deletions
|
@ -35,10 +35,19 @@
|
|||
];
|
||||
|
||||
shellAbbrs = {
|
||||
g = "git";
|
||||
n = "nvim";
|
||||
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 =
|
||||
|
|
Loading…
Reference in a new issue