1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Tweak nushell aliases

This commit is contained in:
RGBCube 2023-05-07 22:23:19 +03:00
parent b3770965fe
commit c1ff3c3117

View file

@ -8,21 +8,18 @@ homeManagerConfiguration "nixos" {
shellAliases = { shellAliases = {
g = "git"; g = "git";
ga = "git add"; ga = "git add .";
gb = "git branch"; gb = "git rebase -i";
gc = "git commit -m"; gc = "git commit -m";
gca = "git commit --amend"; gca = "git commit --amend";
gcl = "git clone"; gcl = "git clone";
gp = "git push"; gp = "git push";
grb = "git rebase -i"; gs = "git status";
grba = "git rebase --abort";
gs = "git switch";
gsm = "git switch master";
la = "ls -a"; la = "ls -a";
sl = "ls"; sl = "ls";
n = "neovim"; e = "neovim";
p = "python3"; p = "python3";
}; };
}; };