Created
July 13, 2012 06:22
-
-
Save bradclawsie/3103098 to your computer and use it in GitHub Desktop.
tmux.conf
This file contains hidden or 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
set-option -g status-bg black | |
set-option -g status-fg white | |
set-option -g status-interval 60 | |
set-option -g status-left "#(/home/brad/bin/imapbiff.pl)" | |
set-option -g status-right "#(/home/brad/bin/temp.pl)" | |
set-option -g pane-active-border-fg blue | |
unbind % | |
bind | split-window -h | |
bind - split-window -v | |
bind-key k select-pane -U | |
bind-key j select-pane -D | |
bind-key h select-pane -L | |
bind-key l select-pane -R | |
bind - resize-pane -D 1 | |
bind + resize-pane -U 1 | |
bind < resize-pane -L 1 | |
bind > resize-pane -R 1 | |
setw -g monitor-activity on | |
set -g visual-activity off |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment