mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
Compare commits
2 commits
39bc189b68
...
51b9590574
Author | SHA1 | Date | |
---|---|---|---|
51b9590574 | |||
10dc9c0b4d |
2 changed files with 4 additions and 2 deletions
|
@ -12,6 +12,7 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
babelfish # Lets fish speak bash
|
babelfish # Lets fish speak bash
|
||||||
bottom # Prettier top
|
bottom # Prettier top
|
||||||
|
dig # DNS lookup
|
||||||
gh # Github CLI
|
gh # Github CLI
|
||||||
httpie # Better curl
|
httpie # Better curl
|
||||||
jq # JSON pretty printer and manipulator
|
jq # JSON pretty printer and manipulator
|
||||||
|
|
|
@ -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