fbenv Crates

ATTENTION: Early alpha!

Why should I use this tool?

It is direnv but for a more global scope. So if you want to have directory based environments, use direnv, but if you want to have an environment for the current shell, you can use fbenv.

Prerequisites

Usage

```toml [environment1] SOME_VAR = "foo"

[environment2] SOME_VAR = "bar" ```

Known limitations

```toml SOME_VAR = "blubb"

[environment1] SOMEOTHERVAR = "bla" ```

will ignore the variable SOME_VAR!

ZSH completion

bash if [[ -x "$(command -v fbenv)" ]]; then if [[ -x "$(command -v fzf)" ]]; then eval $(fbenv print-zsh-setup --with-fzf 2>/dev/null); else eval $(fbenv print-zsh-setup 2>/dev/null); fi; fi;