Fix zoxide and repeat pwd since thats all we have for location

This commit is contained in:
David Heinemeier Hansson
2025-06-09 15:30:35 +02:00
parent abac79344d
commit 33a895aaae

View File

@ -5,7 +5,8 @@ alias lt='eza --tree --level=2 --long --icons --git'
alias lta='lt -a'
alias ff="fzf --preview 'batcat --style=numbers --color=always {}'"
alias fd='fdfind'
# alias cd='zoxide'
alias cd="zd"
zd() { [ $# -eq 0 ] && cd ~ && return || { z "$@" && pwd; }; }
# Directories
alias ..='cd ..'