This commit is contained in:
2025-11-28 14:47:00 +02:00
parent 8b150916ff
commit 874dec7503
13 changed files with 51 additions and 28 deletions
+12 -2
View File
@@ -1,3 +1,13 @@
function tree
command tree -C --dirsfirst $argv
if command -q eza
function tree --wraps='eza'
command eza -T --group-directories-last $argv
end
else if command -q tree
function tree
command tree -C --filesfirst $argv
end
else
function tree
ls -l --group-directories-first
end
end