tmux.conf (512B)
1 set -g base-index 1 2 set -g focus-events on 3 set -g mode-keys vi 4 set -g renumber-windows on 5 set -g status-bg black 6 set -g status-fg white 7 set -g status-interval 1 8 set -g status-right '#(bin/status)' 9 10 bind -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'xsel -bi' 11 bind -n C-f copy-mode \; send-key ? 12 bind -r H resize-pane -L 1 13 bind -r J resize-pane -D 1 14 bind -r K resize-pane -U 1 15 bind -r L resize-pane -R 1 16 bind h select-pane -L 17 bind j select-pane -D 18 bind k select-pane -U 19 bind l select-pane -R 20 bind s splitw -h