Created
August 13, 2012 22:37
-
-
Save stevommmm/3344573 to your computer and use it in GitHub Desktop.
tmux config
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
# Window index base 1 | |
set -g base-index 1 | |
set -g default-terminal "screen-256color" | |
set -g prefix C-b | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
set -g mode-keys vi | |
# easily toggle synchronization (mnemonic: e is for echo) | |
bind e setw synchronize-panes on | |
bind E setw synchronize-panes off | |
# THEME | |
set -g window-status-fg white | |
set -g window-status-bg blue | |
set -g window-status-attr dim | |
set -g window-status-current-attr dim | |
set -g pane-border-fg white | |
set -g pane-border-bg default | |
set -g pane-active-border-fg blue | |
set -g pane-active-border-bg default | |
set -g message-fg white | |
set -g message-bg blue | |
set -g message-attr dim | |
set-window-option -g window-status-current-bg default | |
set -g status-bg blue | |
set -g status-fg white | |
set -g status-interval 60 | |
set -g status-left-length 30 | |
set -g status-right-length 80 | |
set -g status-left '#[fg=white](#S) #(whoami)@#H#[default]' | |
set -g status-right '#[fg=white]#(date)#[default]#[fg=white]#(uptime | cut -d "," -f 2-)#[default]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment