From 353d22669b68012bb180183c850ef5f05bea07db Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 13 Jun 2025 11:35:29 +0200 Subject: [PATCH] fish/functions/ll.fish: pass --color --- fish/functions/ll.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/functions/ll.fish b/fish/functions/ll.fish index 09dfb45..7f9fbf2 100644 --- a/fish/functions/ll.fish +++ b/fish/functions/ll.fish @@ -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