configs  ls.fish at [09fe98aab3]

File config/fish/functions/ls.fish artifact 2407695fb9 part of check-in 09fe98aab3


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