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

7 lines
172 B
Fish

function ls --description 'List contents of directory'
if type -q gls
command gls --color=auto $argv
else
command ls --color=auto $argv
end
end