Skip to content

Instantly share code, notes, and snippets.

@tmarcus87
Created March 6, 2014 06:03
Show Gist options
  • Save tmarcus87/9383375 to your computer and use it in GitHub Desktop.
Save tmarcus87/9383375 to your computer and use it in GitHub Desktop.
set-option -g prefix C-t
set-option -g display-panes-time 1500
bind 1 split-window -h
bind 2 split-window -v
bind s setw synchronize-panes on
bind S setw synchronize-panes off
bind l display-panes
bind L display-panes
bind m \
set -g mode-mouse on \;\
set -g mouse-resize-pane off \;\
set -g mouse-select-pane on \;\
set -g mouse-select-window on \;\
display 'Mouse: ON'
bind M \
set -g mode-mouse off \;\
set -g mouse-resize-pane off \;\
set -g mouse-select-pane off \;\
set -g mouse-select-window off \;\
display 'Mouse: OFF'
bind C-h resize-pane -L 6
bind C-l resize-pane -R 6
bind C-j resize-pane -D 6
bind C-k resize-pane -U 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment