Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Created January 16, 2014 10:14
Show Gist options
  • Save rummelonp/8452595 to your computer and use it in GitHub Desktop.
Save rummelonp/8452595 to your computer and use it in GitHub Desktop.
tmux で alt+数字でレイアウト変更、alt+矢印キーでペインのサイズ変更するやつ
# pane layout
bind-key -n M-1 select-layout main-horizontal
bind-key -n M-2 select-layout main-vertical
bind-key -n M-3 select-layout tiled
bind-key -n M-4 select-layout even-horizontal
bind-key -n M-5 select-layout even-vertical
# pane size
bind-key -n M-Up resize-pane -U 5
bind-key -n M-Down resize-pane -D 5
bind-key -n M-Left resize-pane -L 5
bind-key -n M-Right resize-pane -R 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment