git clone https://github.com/andyedison/dotfiles.git ~/dotfiles
started using tmuxp to generate sessions given yaml files. tmuxp repo here
example bash setup, assuming you have a config.yaml, docker.yaml, and dba.yaml defined in your ~/.tmuxp directory
# tmux setup
tmux has-session -t dba 1> /dev/null 2>&1
if [ $? -eq 1 ]; then
# last one listed is attached
tmuxp load config docker dba
fi