Skip to content

Instantly share code, notes, and snippets.

@sholloway
Created April 29, 2012 19:54
Show Gist options
  • Save sholloway/2552951 to your computer and use it in GitHub Desktop.
Save sholloway/2552951 to your computer and use it in GitHub Desktop.
My tmux config file
# some help
# http://www.linuxized.com/2010/05/switching-from-gnu-screen-to-tmux/
# http://blog.hawkhost.com/2010/07/02/tmux-–-the-terminal-multiplexer-part-2/#modifying-tab-color
# Set the prefix key to Cntrl+a
unbind C-b
set-option -g prefix "C-a"
bind-key "C-a" send-prefix
# Set status bar
set -g status-bg black
set -g status-fg white
set -g status-left ‘#[fg=green]#H’
# Set Split Pane Vertical and Horizontal
unbind %
bind | split-window -h
bind - split-window -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment