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

Use big flags instead of shortcuts

This commit is contained in:
RGBCube 2023-05-24 20:10:09 +03:00
parent 8f30e84c2b
commit dbb2ce056e
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -4,9 +4,9 @@ homeConfiguration "nixos" {
programs.nushell.shellAliases = { programs.nushell.shellAliases = {
g = "git"; g = "git";
ga = "git add ./"; ga = "git add ./";
grb = "git rebase -i"; grb = "git rebase --interactive";
grba = "git rebase --abort"; grba = "git rebase --abort";
gc = "git commit -m"; gc = "git commit --message";
gca = "git commit --amend"; gca = "git commit --amend";
gcl = "git clone"; gcl = "git clone";
gd = "git diff"; gd = "git diff";

View file

@ -19,7 +19,7 @@
envFile.source = ./environment.nu; envFile.source = ./environment.nu;
shellAliases = { shellAliases = {
la = "ls -a"; la = "ls --all";
sl = "ls"; sl = "ls";
}; };
}; };