A highly configurable tree view visualizer CLI tool written in Rust!
```bash
cargo install ctv
brew install angelina-tsuboi/ctv/ctv ```
bash
ctv <flags> <directory_path>
-h, --short
--help Print help information
-l, --limit <LIMIT>
-p, --config Show config variables and exit
-V, --version Print version information
The config.toml
file located at ~/.config/ctv.toml
allows you to customize the appearance of your tree display!
If the configuration does not exist, defaults will be used.
Additionally, you can specify configuration via environment variables. For example, here's two ways of specifying the sort order:
```toml
sorting = ["size", "name", "time"] ```
```bash
$ CTV_SORTING='["size", "name", "time"]' ctv ```