Configuration

Configuration is done through a config.yaml file. todotree searches for the file in the following locations in order:

The default parameters are documented in ./examples/config.yaml file.

Powershell tip

A useful way to alias it in PowerShell is to add the following snippet to your $PROFILE script. You can open the file with notepad $PROFILE.

Function todo-tree {
    todotree --config-file "C:/path/to/config.yaml" $args
}
Set-Alias todo todo-tree