Skip to content

Instantly share code, notes, and snippets.

@lloydroc
Created September 7, 2016 02:17
Show Gist options
  • Save lloydroc/d9d22e092821ab684139f4ce66e8cdf3 to your computer and use it in GitHub Desktop.
Save lloydroc/d9d22e092821ab684139f4ce66e8cdf3 to your computer and use it in GitHub Desktop.
Configuration File for TMUX
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf
# Enable mouse control (clickable windows, panes, resizable panes)
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mouse-resize-pane on
# switch panes using VI directions on home row
bind h select-pane -L
bind l select-pane -R
bind k select-pane -U
bind j select-pane -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment