nixos-config/modules/home/shell-conf/fish/functions/ls.fish
2025-03-21 16:50:54 -04:00

7 lines
182 B
Fish

function ls --wraps=eza --description 'eza instead of ls'
if type --quiet eza
eza --git --header --icons $argv
else
command ls --color=auto $argv
end
end