1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

fish/functions/ll.fish: pass --color

This commit is contained in:
Henrik Hautakoski 2025-06-13 11:35:29 +02:00
parent 6c6294297e
commit 353d22669b

View file

@ -2,6 +2,6 @@ function ll
if test -f /usr/bin/eza
/usr/bin/eza --icons=always -l --git $argv
else
/bin/ls -l $argv
/bin/ls --color=auto -l $argv
end
end