1 set -g default-terminal "screen-256color"
11 bind -t vi-copy 'v' begin-selection
12 bind -t vi-copy 'y' copy-selection
13 bind -t vi-copy 'Space' halfpage-down
14 bind -t vi-copy 'Bspace' halfpage-up
16 # extra commands for interacting with the ICCCM clipboard
17 bind C-c run "tmux save-buffer - | xclip -i -sel clipboard"
18 bind C-v run "tmux set-buffer \"$(xclip -o -sel clipboard)\"; tmux paste-buffer"
20 # easy-to-remember split pane commands
21 bind | split-window -h
22 bind - split-window -v
26 # moving between panes with vim movement keys
32 # moving between windows with vim movement keys
33 bind -r C-h select-window -t :-
34 bind -r C-l select-window -t :+
36 # resize panes with vim movement keys
37 bind -r H resize-pane -L 5
38 bind -r J resize-pane -D 5
39 bind -r K resize-pane -U 5
40 bind -r L resize-pane -R 5