update ll and sll functions to include --group-dirs first option

This commit is contained in:
2025-12-01 21:05:25 +01:00
parent 1cd7348be6
commit 347ebb90d0
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
+2 -2
View File
@@ -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