configs  Diff

Differences From Artifact [98d8040878]:

To Artifact [9c1f68ea69]:


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

|
|
|
|
|

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