Created
August 4, 2014 06:32
-
-
Save samzhao/222d191fd775ceef78e2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
set-option -g default-shell /bin/zsh | |
set-option -g default-terminal "screen-256color" | |
set-option -g base-index 1 | |
setw -g pane-base-index 1 | |
set-option -g xterm-keys on | |
setw -g aggressive-resize on | |
set -s escape-time 0 | |
set -g renumber-windows on | |
set-window-option -g mode-keys vi | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
set-window-option -g automatic-rename | |
set-option -g status-utf8 on | |
# mouse | |
set -g mode-mouse on | |
setw -g mouse-select-window on | |
setw -g mouse-select-pane on | |
# scrollback buffer n lines | |
set -g history-limit 10000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment