Skip to content

Instantly share code, notes, and snippets.

@Superbil
Created September 2, 2012 17:00
Show Gist options
  • Save Superbil/3601500 to your computer and use it in GitHub Desktop.
Save Superbil/3601500 to your computer and use it in GitHub Desktop.
my tmux config
# We won't worry about sending C-\ to any programs
# bind-key C-\ send-prefix
# hit C-\ twice to go to last window
bind-key C-\ last-window
bind-key b set-option status
# C-b is not acceptable, due to emacs, bash, and vim
unbind-key C-b
set -g prefix 'C-\'
# split windows like vim
# vim's definition of a horizontal/vertical split is reversed from tmux's
bind s split-window -v
bind v split-window -h
set -g default-terminal "screen-256color" # + "tmux -2" => 256 color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment