From a92f187706719f197ec0ffd6bb298568b1959338 Mon Sep 17 00:00:00 2001 From: Random936 Date: Wed, 2 Apr 2025 10:28:51 -0700 Subject: [PATCH] Added open alias to zsh config --- home/modules/zsh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/modules/zsh.nix b/home/modules/zsh.nix index 31b9521..2d2c604 100644 --- a/home/modules/zsh.nix +++ b/home/modules/zsh.nix @@ -30,6 +30,7 @@ shellAliases = { cd = "z"; ls = "eza"; + open = "xdg-open"; histogram = "awkuniq -c | sort -nr"; 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)]))'";