From 7210864995ec81576aa215b413e4860707cc0ce1 Mon Sep 17 00:00:00 2001 From: Random936 Date: Mon, 25 Nov 2024 18:33:11 -0800 Subject: [PATCH] Fixed json-less alias --- home/modules/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/zsh.nix b/home/modules/zsh.nix index b36395b..27ae705 100644 --- a/home/modules/zsh.nix +++ b/home/modules/zsh.nix @@ -16,7 +16,7 @@ ls = "eza"; awkuniq = "sort | uniq"; histogram = "awkuniq -c | sort -nr"; - json-less = "jq -C . | less -M"; + json-less = "jq -C . | less -R"; csv2json = "python -c 'import csv, json, sys; print(json.dumps([dict(r) for r in csv.DictReader(sys.stdin)]))'"; # Nix Specific aliases