A script that handles running foundry and nimble dev without the need for running multiple commands and switching folders.
Requirements: unix environment of some sort since it requires tmux
Installing: Create a new file called foundry in ~/.local/bin/
You might need to update your .bashrc file with this
case ":$PATH:" in
*":$HOME/.local/bin:"*) ;;
*) export PATH="$HOME/.local/bin:$PATH" ;;