Switch la and ll around to match default fish behaviour

This commit is contained in:
David Holland 2019-12-23 17:58:21 +01:00
parent b9a584bf0a
commit 1fe1056406
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
function la
ls -A $argv
ls -alhF $argv
end

View File

@ -1,3 +1,3 @@
function ll
ls -alhF $argv
ls -A $argv
end