mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-01 16:53:07 +01:00
8 lines
124 B
Fish
8 lines
124 B
Fish
function ls
|
|
if type -q exa
|
|
command exa --icons $argv
|
|
else
|
|
command ls --color=auto $argv
|
|
end
|
|
end
|