Created
April 29, 2012 19:54
-
-
Save sholloway/2552951 to your computer and use it in GitHub Desktop.
My tmux config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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