Skip to content

Instantly share code, notes, and snippets.

@somma
Last active June 18, 2017 03:43
Show Gist options
  • Save somma/11c436f54a03ce3ffa523b3ac6732080 to your computer and use it in GitHub Desktop.
Save somma/11c436f54a03ce3ffa523b3ac6732080 to your computer and use it in GitHub Desktop.
~./.tmux.conf
# set prefix
set -g prefix `
unbind C-b
bind ` send-prefix
 
# split pane
bind | split-window -h
bind - split-window -v
 
# move to pane
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
 
# adjust pane size
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment