1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +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 = {
g = "git";
ga = "git add";
gb = "git branch";
ga = "git add .";
gb = "git rebase -i";
gc = "git commit -m";
gca = "git commit --amend";
gcl = "git clone";
gp = "git push";
grb = "git rebase -i";
grba = "git rebase --abort";
gs = "git switch";
gsm = "git switch master";
gs = "git status";
la = "ls -a";
sl = "ls";
n = "neovim";
e = "neovim";
p = "python3";
};
};