Skip to content

Instantly share code, notes, and snippets.

@ijleesw
Created July 9, 2019 04:36
Show Gist options
  • Save ijleesw/e400836b8a65d893f751f000f34585e9 to your computer and use it in GitHub Desktop.
Save ijleesw/e400836b8a65d893f751f000f34585e9 to your computer and use it in GitHub Desktop.
.tmux.conf setting for tmux 1.8
# All commands start with C-a
set -g prefix C-a
# Use mouse
setw -g mode-mouse on
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-utf on
# Pane buffer
set-option -g history-limit 25000
# Use Alt-arrow keys without prefix key to switch panes
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