diff --git a/functions/tree.fish b/functions/tree.fish new file mode 100644 index 0000000..9053f79 --- /dev/null +++ b/functions/tree.fish @@ -0,0 +1,6 @@ +which tree --skip-functions >/dev/null 2>/dev/null +if [ $status -eq 0 ] + function tree --wraps="tree -C" + command tree -C $argv + end +end