From 46836579f2ffb84c12300c0838c42932994de3b5 Mon Sep 17 00:00:00 2001 From: Random936 Date: Tue, 29 Apr 2025 20:33:28 -0700 Subject: [PATCH] Added some more basic zsh aliases --- home/modules/zsh.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/modules/zsh.nix b/home/modules/zsh.nix index 808e7f0..344503f 100644 --- a/home/modules/zsh.nix +++ b/home/modules/zsh.nix @@ -30,8 +30,10 @@ shellAliases = { cd = "z"; ls = "eza"; + mvi = "mv -t ~/Nextcloud/INBOX"; sdb = "sdb-client"; open = "xdg-open"; + reload = "source ~/.zshrc"; 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)]))'";