Just use the basics in case there is a problem with path

This commit is contained in:
David Heinemeier Hansson
2025-10-27 17:32:15 +01:00
parent 1060a54c1a
commit 9d9f362c7a

View File

@@ -1,5 +1,5 @@
# File system
if omarchy-cmd-present eza; then
if command -v eza &> /dev/null; then
alias ls='eza -lh --group-directories-first --icons=auto'
alias lsa='ls -a'
alias lt='eza --tree --level=2 --long --icons --git'
@@ -8,7 +8,7 @@ fi
alias ff="fzf --preview 'bat --style=numbers --color=always {}'"
if omarchy-cmd-present z; then
if command -v zoxide &> /dev/null; then
alias cd="zd"
zd() {
if [ $# -eq 0 ]; then