Skip to content

Instantly share code, notes, and snippets.

@dreeve
Created March 9, 2011 14:34
Show Gist options
  • Save dreeve/862276 to your computer and use it in GitHub Desktop.
Save dreeve/862276 to your computer and use it in GitHub Desktop.
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