mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-21 17:02:18 +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; [
|
||||
babelfish # Lets fish speak bash
|
||||
bottom # Prettier top
|
||||
dig # DNS lookup
|
||||
gh # Github CLI
|
||||
httpie # Better curl
|
||||
jq # JSON pretty printer and manipulator
|
||||
|
|
|
@ -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