課題
tmuxを起動しようとするとexitedと表示され、プロセスが立ち上がらない。
原因
window nameがreattach-to-user-namespaceになっていること。
.tmux.conf
set-option -g default-command "reattach-to-user-namespace -l zsh"
bind C-q run-shell 'reattach-to-user-namespace tmux-pbcopy'
対策
reattach-to-user-namespaceをインストールする。
$ brew install reattach-to-user-namespace