all repos — nixfiles @ 53b7c75e7ac69f059444963adf6f5ceb9d96bd8f

System and user configuration, managed by nix and home-manager

replace httpie with xh

Alan Pearce
commit

53b7c75e7ac69f059444963adf6f5ceb9d96bd8f

parent

659df13a8a6ac848cc095987f33cc1020bd66af9

3 files changed, 5 insertions(+), 3 deletions(-)

jump to
M user/settings/development/base.nixuser/settings/development/base.nix
@@ -20,7 +20,7 @@ nodePackages.yaml-language-server
mosh - httpie + xh jq ] ++ (
M user/settings/emacs.nixuser/settings/emacs.nix
@@ -58,7 +58,8 @@ la = "ls -A $*";
ll = "ls -lh $*"; lla = "ls -lhA $*"; - https = "http --default-scheme https $*"; + http = "xh"; + https = "xh --default-scheme https $*"; ava = "npx ava $*"; bunyan = "npx bunyan $*";
M user/settings/zsh.nixuser/settings/zsh.nix
@@ -106,7 +106,8 @@
cg = "cd $(git root)"; cdg = "cd $(git root)"; - https = "http --default-scheme https"; + http = "xh"; + https = "xh --default-scheme https"; history = "fc -l $(( $LINES - 2 ))"; hist-freq-lines = "fc -l -10000 | cut -d' ' -f4- | sort | uniq -c | sort -g | tail -n100 | less";