Skip to content

Instantly share code, notes, and snippets.

@EthanSchoen
EthanSchoen / tmux conf
Created February 11, 2017 20:42
My Configuration for TMUX
set -g prefix c-a
# make split easier to remember
bind | split-window -h
bind - split-window -v
bind-key r source-file ~/.tmux.conf # refresh tmux
# switch panes using Alt-arrow without prefix
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