configs  ls.fish at [c4bb3283fb]

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


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