mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 01:12:19 +00:00
add 'g' abbr for git, sort abbrs
This commit is contained in:
parent
39bc189b68
commit
10dc9c0b4d
1 changed files with 3 additions and 2 deletions
|
@ -10,10 +10,11 @@ in
|
||||||
|
|
||||||
shellAbbrs = rec {
|
shellAbbrs = rec {
|
||||||
ccat = "egrep -v '^\s*(#|$)'";
|
ccat = "egrep -v '^\s*(#|$)'";
|
||||||
|
g = "git";
|
||||||
ga = "git add";
|
ga = "git add";
|
||||||
gc = "git commit"; # interactive commit
|
gc = "git commit"; # interactive commit
|
||||||
gg = "git graph";
|
|
||||||
gcm = "git commit -m"; # quick commit
|
gcm = "git commit -m"; # quick commit
|
||||||
|
gg = "git graph";
|
||||||
gs = "git status";
|
gs = "git status";
|
||||||
jqless = "jq -C | less -r";
|
jqless = "jq -C | less -r";
|
||||||
k = mkIf hasKubectl "kubectl";
|
k = mkIf hasKubectl "kubectl";
|
||||||
|
@ -21,8 +22,8 @@ in
|
||||||
sshpass = "ssh -o PubkeyAuthentication=no";
|
sshpass = "ssh -o PubkeyAuthentication=no";
|
||||||
tf = "terraform";
|
tf = "terraform";
|
||||||
tfyolo = "terraform apply -auto-approve";
|
tfyolo = "terraform apply -auto-approve";
|
||||||
vi = "vim";
|
|
||||||
v = "vim";
|
v = "vim";
|
||||||
|
vi = "vim";
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
|
|
Loading…
Reference in a new issue