configs  ls.fish at [dfc76a33b7]

File config/fish/functions/ls.fish artifact 98d8040878 part of check-in dfc76a33b7


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