home/.config/fish/functions/ls.fish
2024-02-01 20:59:19 +01:00

7 lines
No EOL
92 B
Fish

function ls
if command -q exa
exa -1 --icons=auto $argv
else
command ls $argv
end
end