configs  Diff

Differences From Artifact [27c83c809a]:

To Artifact [98d8040878]:


1
2
3
4
5
6
7
function ls --description 'List contents of directory'
	if which gls >/dev/null ^&1
		command gls --color=auto $argv
	else
		command ls --color=auto $argv
	end
end

|





1
2
3
4
5
6
7
function ls --description 'List contents of directory'
	if type -q gls
		command gls --color=auto $argv
	else
		command ls --color=auto $argv
	end
end