From 347ebb90d0c87719c5181a08e0e26a856a3cd319 Mon Sep 17 00:00:00 2001 From: GlennIgen Date: Mon, 1 Dec 2025 21:05:25 +0100 Subject: [PATCH] update ll and sll functions to include --group-dirs first 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 0017ac6..a25d7cc 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 --group-dirs first' --description 'alias ll lsd -Alh --group-dirs first' + lsd -Alh --group-dirs first $argv end diff --git a/.config/fish/functions/sll.fish b/.config/fish/functions/sll.fish index f3651ae..b03380a 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 --group-dirs first' --description 'alias sll sudo lsd -Alh --group-dirs first' + sudo lsd -Alh --group-dirs first $argv end