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:
parent
8f30e84c2b
commit
dbb2ce056e
2 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
envFile.source = ./environment.nu;
|
envFile.source = ./environment.nu;
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
la = "ls -a";
|
la = "ls --all";
|
||||||
sl = "ls";
|
sl = "ls";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue