Skip to content

Instantly share code, notes, and snippets.

@sambaiz
Created October 14, 2015 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sambaiz/7426abdb21beaca4deb0 to your computer and use it in GitHub Desktop.
Save sambaiz/7426abdb21beaca4deb0 to your computer and use it in GitHub Desktop.
# prefixキーをC-tに変更してC-bを解除
set -g prefix C-t
unbind C-b
# Vimのキーバインドでペインを移動する
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# - でペインを横に分割する(縦に切る)
bind - split-window -h
# | でペインを縦に分割する(横に切る)
bind | split-window -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment