A simple configurable cd wrapper that sets env vars per directory, based on a config file.
Install binary
bash
cargo install cdwe
Create a cdwe.toml file in your home directory ```toml [[directory]] path = "/Users/synoet/dev/projectb" vars = { "TEST_VAR"= "Hello World", }
[[directory]] path = "/Users/synoet/dev/projecta" vars = { "ISDEBUG"= "true", "ISCI" = "false"} ```
Init your shell
bash
cdwe init zsh # zsh shells
cdwe init bash # bash shells
cdwe init fish # fish shells
Reload your shell and start using! ```bash
cdwe /Users/synoet/dev/projecta echo $IS_DEBUG
cdwe .. echo $IS_DEBUG ```