Created
August 19, 2013 09:53
-
-
Save amitkot/6267532 to your computer and use it in GitHub Desktop.
tmux config file for remote servers
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/bash | |
set -g status-utf8 on | |
set -g status-keys vi | |
set -g status-interval 1 | |
set -g prefix ` | |
bind ` send-key ` | |
bind-key -n F9 resize-pane -Z | |
bind-key -n F11 prev | |
bind-key -n F12 next-window | |
bind-key | split-window -h | |
bind-key - split-window -v | |
set -s escape-time 0 | |
set -g history-limit 100000 | |
set -g mode-mouse on | |
set -g mouse-resize-pane on | |
set -g mouse-select-pane on | |
set -g mouse-select-window on | |
set-option -g mouse-utf8 on | |
set -g status-bg '#666666' | |
set -g status-fg '#aaaaaa' | |
set -g status-left '' | |
set -g status-right '' | |
set-option -sg escape-time 1 | |
set -g default-terminal "screen-256color" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment