Created
July 9, 2019 04:36
-
-
Save ijleesw/e400836b8a65d893f751f000f34585e9 to your computer and use it in GitHub Desktop.
.tmux.conf setting for tmux 1.8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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