tmux.conf (379B)
1 set -g prefix C-q 2 unbind C-b 3 setw -g mode-keys vi 4 5 bind h select-pane -L 6 bind j select-pane -D 7 bind k select-pane -U 8 bind l select-pane -R 9 10 bind H resize-pane -L 5 11 bind J resize-pane -D 5 12 bind K resize-pane -U 5 13 bind L resize-pane -R 5 14 15 bind | split-window -h 16 bind - split-window -v 17 18 set-option -g default-terminal 'screen-256color' 19 set -g status-fg white 20 set -g status-bg black