mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-21 17:02:18 +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 {
|
||||
ccat = "egrep -v '^\s*(#|$)'";
|
||||
g = "git";
|
||||
ga = "git add";
|
||||
gc = "git commit"; # interactive commit
|
||||
gg = "git graph";
|
||||
gcm = "git commit -m"; # quick commit
|
||||
gg = "git graph";
|
||||
gs = "git status";
|
||||
jqless = "jq -C | less -r";
|
||||
k = mkIf hasKubectl "kubectl";
|
||||
|
@ -21,8 +22,8 @@ in
|
|||
sshpass = "ssh -o PubkeyAuthentication=no";
|
||||
tf = "terraform";
|
||||
tfyolo = "terraform apply -auto-approve";
|
||||
vi = "vim";
|
||||
v = "vim";
|
||||
vi = "vim";
|
||||
};
|
||||
|
||||
shellAliases = {
|
||||
|
|
Loading…
Reference in a new issue