1
1
Fork 0
configs/config/fish/functions/ls.fish

7 lines
160 B
Fish

function ls --description 'List contents of directory'
if which gls >/dev/null
command gls --color=auto $argv
else
command ls --color=auto $argv
end
end