From 497f33adcce65327b6cf8f9370e1ec67c854587a Mon Sep 17 00:00:00 2001 From: Krosh Date: Sun, 30 Nov 2025 05:48:42 +0300 Subject: [PATCH] add wttr edit ta alias --- home-manager/modules/zsh/zsh.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home-manager/modules/zsh/zsh.nix b/home-manager/modules/zsh/zsh.nix index ee3909a..0fafa65 100644 --- a/home-manager/modules/zsh/zsh.nix +++ b/home-manager/modules/zsh/zsh.nix @@ -87,6 +87,8 @@ grepps = "ps -A | grep"; try = ''f() { nix-shell -p "$@" --run zsh; unset -f f; }; f''; + wttr = "curl wttr.in/Ramenki?p1MQ"; + gitpa = ''f() { git add -A && git commit -m "$1" && git push; }; f''; amnezia = '' @@ -102,7 +104,7 @@ mv_avatar = "move_avatar"; t = "todo"; - ta = ''f() { todo add "$@"; todo; unset -f f; }; f''; + ta = ''f() { todo add "$*"; todo; unset -f f; }; f''; tr = ''f() { todo rm "$@"; todo; unset -f f; }; f''; td = ''f() { todo done "$@"; todo; unset -f f; }; f''; };