.dotfiles/.config/zsh/functions/eza.zsh
2026-01-18 21:08:16 -07:00

7 lines
227 B
Bash

if command -v "eza" &>/dev/null; then
alias l='eza -lh --icons=auto' \
ll='eza -lha --icons=auto --sort=name --group-directories-first' \
ld='eza -lhD --icons=auto' \
lt='eza --icons=auto --tree'
fi