1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 06:17:34 +00:00

ll: Group directories first

This commit is contained in:
Steffo 2024-09-03 01:34:34 +02:00
parent 9b19d36801
commit 6c4f17a5a4
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -2,6 +2,6 @@ which ls --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function ll --wraps=ls
log-t "" "Listing" "all files in the directory..."
command ls --all --author --color --kibibytes --human-readable -l $argv;
command ls --all --author --color --kibibytes --human-readable --group-directories-first -l $argv;
end
end