replace httpie with xh
Alan Pearce alan@alanpearce.eu
Mon, 17 Apr 2023 09:24:31 +0200
3 files changed, 5 insertions(+), 3 deletions(-)
M user/settings/development/base.nix → user/settings/development/base.nix
@@ -20,7 +20,7 @@ nodePackages.yaml-language-server mosh - httpie + xh jq ] ++ (
M user/settings/emacs.nix → user/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.nix → user/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";