Skip to content

Instantly share code, notes, and snippets.

@melvinsh
Created April 23, 2017 08:27
Show Gist options
  • Save melvinsh/2db22a9736a7d035e1d5bfc242d1586e to your computer and use it in GitHub Desktop.
Save melvinsh/2db22a9736a7d035e1d5bfc242d1586e to your computer and use it in GitHub Desktop.
tmux
# Alt - Z
unbind C-b
set-option -g prefix M-z
bind-key M-z send-prefix
# Splitting
bind \ split-window -h
bind - split-window -v
unbind '"'
unbind %
# Reloading config
bind r source-file ~/.tmux.conf
# Navigating
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment