ほぼiTerm2と同じようなコマンドでペイン分割などができる
.tmux.conf
##
# set は set-option のエイリアス
# setw は set-window-option のエイリアス
set -g prefix C-q
unbind C-b
set -sg escape-time 0
set -g base-index 1
setw -g pane-base-index 1
bind -n C-d split-window -h -c "#{pane_current_path}"
bind -n C-f split-window -v -c "#{pane_current_path}"
bind -n C-o select-pane -t :.+
bind -n C-w kill-pane
set -g default-terminal screen-256color
set -g pane-active-border-fg black
set -g pane-active-border-bg cyan
set -g mouse on
bind -n C-t new-window
set -g status-position top
コピペがShiftを押しながらになるので、やりずらい
なので、iTerm2の方で選択したらクリップボードに取り込まれるようにする