Description
Currently dorothy's config files are sourced into the shell calling them, and as most of the files that load config files are bash the config files must either be .sh or .bash
I'm thinking instead of sourcing configuration files, we could execute them, similar to what we do with setup-environment-commands
For instance, a bash config file could do:
#!/usr/bin/env dorothy-bash-env
export HELLO=world
And our helper command bash-env sources our sources/env.bash that dumps the commands to set the modified environment variables.
we'd just have to update our sources/config.* files to understand how to load these, and provide the (bash|zsh|fish|nu)-env commands.
This would also allow us to do json or toml config files.
The issue here however is that currently Dorothy can update fields within bash configuration files. If we properly endorse other formats, we'd need to move this updating ability into a proper command, and give it the intelligence to support any extension we support.