configs  ls.fish at [28137c16b9]

File config/fish/functions/ls.fish artifact 2407695fb9 part of check-in 28137c16b9


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