Skip to content

Instantly share code, notes, and snippets.

@kenmickles
Created January 11, 2012 17:19
Show Gist options
  • Save kenmickles/1595694 to your computer and use it in GitHub Desktop.
Save kenmickles/1595694 to your computer and use it in GitHub Desktop.
My tmux config file
# 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