Created
March 9, 2011 14:34
-
-
Save dreeve/862276 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
unbind C-b | |
set -g prefix ` | |
set -g status-bg black | |
set -g status-fg white | |
set-window-option -g window-status-current-bg cyan | |
set-window-option -g window-status-current-fg black | |
set -g status-left '#[fg=cyan](#S) #[default]' | |
set -g status-right '#[fg=green]#(date "+%d %b %H:%M")#[default]' | |
setw -g mode-keys vi | |
unbind [ | |
bind Escape copy-mode | |
bind-key ` last-window | |
# got this from http://www.edschmalzle.com/2010/09/29/getting-into-tmux/ | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment