···11+function treefd --wraps fd
22+ if not command -sq fd
33+ echo "fd is not installed"
44+ return 1
55+ end
66+ if not command -sq as-tree
77+ echo "as-tree is not installed"
88+ return 1
99+ end
1010+1111+ set -l fd_args $argv
1212+ if test (count $fd_args) -eq 0
1313+ set fd_args "."
1414+ end
1515+ fd $fd_args | as-tree
1616+end