From 1cd7348be6a8be43c5cd276bbe8bdcc6239724c3 Mon Sep 17 00:00:00 2001 From: GlennIgen Date: Mon, 1 Dec 2025 19:00:40 +0100 Subject: [PATCH] update ll and sll functions to use lsd -Alh option --- .config/fish/functions/ll.fish | 4 ++-- .config/fish/functions/sll.fish | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/fish/functions/ll.fish b/.config/fish/functions/ll.fish index 2d81201..0017ac6 100644 --- a/.config/fish/functions/ll.fish +++ b/.config/fish/functions/ll.fish @@ -1,4 +1,4 @@ -function ll --wraps='lsd -alh' --description 'alias ll lsd -alh' - lsd -alh $argv +function ll --wraps='lsd -Alh' --description 'alias ll lsd -Alh' + lsd -Alh $argv end diff --git a/.config/fish/functions/sll.fish b/.config/fish/functions/sll.fish index 4fe0438..f3651ae 100644 --- a/.config/fish/functions/sll.fish +++ b/.config/fish/functions/sll.fish @@ -1,4 +1,4 @@ -function sll --wraps='sudo lsd -alh' --description 'alias sll sudo lsd -alh' - sudo lsd -alh $argv +function sll --wraps='sudo lsd -Alh' --description 'alias sll sudo lsd -Alh' + sudo lsd -Alh $argv end