configs  Artifact [98d8040878]

Artifact 98d804087801fcfede0486ab2311e592d8e969cd4e1f192bd871dbe122e1fa95:

  • File config/fish/functions/ls.fish — part of check-in [c4bb3283fb] at 2020-02-15 22:44:12 on branch trunk — Update fish config for 3.1.0 (user: js size: 151)

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