Created
January 11, 2012 17:19
-
-
Save kenmickles/1595694 to your computer and use it in GitHub Desktop.
My tmux config file
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
# act like vim | |
setw -g mode-keys vi | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind-key -r C-h select-window -t :- | |
bind-key -r C-l select-window -t :+ | |
# act like GNU screen | |
unbind C-b | |
set -g prefix C-a | |
# look good | |
set -g default-terminal "screen-256color" | |
set-option -g status-utf8 on | |
set -g history-limit 4096 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment