7 lines
92 B
Fish
Raw Normal View History

2024-02-01 19:59:19 +00:00
function ls
if command -q exa
exa -1 --icons=auto $argv
else
command ls $argv
end
end