Skip to content

Instantly share code, notes, and snippets.

@willscripted
Last active August 29, 2015 14:24
Show Gist options
  • Save willscripted/f7b750c5b41f604c96d3 to your computer and use it in GitHub Desktop.
Save willscripted/f7b750c5b41f604c96d3 to your computer and use it in GitHub Desktop.
tmux-me
set -g default-terminal "screen-256color"
# 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
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment