1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-10-16 14:27:34 +00:00
config-fish/functions/ll.fish

8 lines
269 B
Fish
Raw Normal View History

2024-08-21 09:45:18 +00:00
which ls --skip-functions >/dev/null 2>/dev/null
if [ $status -eq 0 ]
function ll --wraps=ls
2024-08-21 19:59:02 +00:00
log-t "" "Listing" "all files in the directory..."
2024-09-02 23:34:34 +00:00
command ls --all --author --color --kibibytes --human-readable --group-directories-first -l $argv;
2024-08-21 09:45:18 +00:00
end
2020-07-21 14:15:44 +00:00
end