5 if tmux has-session -t docvim 2> /dev/null; then
10 tmux new-session -d -s docvim -n vim
12 # 1. Main window: vim.
13 tmux send-keys -t docvim:vim "vim -c CommandT" Enter
16 tmux new-window -t docvim -n repl
17 tmux send-keys -t docvim:repl "stack repl" Enter
19 # 3. General shell use.
20 tmux new-window -t docvim
22 tmux attach -t docvim:vim