Regenerated

This commit is contained in:
2026-04-14 19:56:28 +02:00
parent c4b6902a14
commit 180b960526
4 changed files with 382 additions and 355 deletions
+10
View File
@@ -13,3 +13,13 @@ if command -v starship >/dev/null 2>&1; then
fi
source /etc/profile.d/99-alias-functions.sh
eval "$(lua /run/current-system/sw/bin/z.lua --init zsh)"
cd() {
if [ "$#" -eq 0 ]; then
builtin cd ~
else
builtin cd "$@" || return
fi
command z "$PWD"
}