Created
March 31, 2012 23:36
-
-
Save stevommmm/2269729 to your computer and use it in GitHub Desktop.
c4 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
# Window index base 1 | |
set -g base-index 1 | |
set -g default-terminal "screen-256color" | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
# THEME | |
setw -g window-status-fg blue | |
setw -g window-status-bg default | |
setw -g window-status-attr bright | |
setw -g window-status-current-attr bright | |
set -g pane-border-fg colour240 | |
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 colour240 | |
set -g message-attr bright | |
set-window-option -g window-status-current-bg default | |
set -g status-bg black | |
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=green](#S) #(whoami)@#H#[default]' | |
set -g status-right '#[fg=green]#(date)#[default]#[fg=green]#(uptime | cut -d "," -f 2-)#[default]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment