Skip to content

Instantly share code, notes, and snippets.

@stevommmm
Created August 13, 2012 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevommmm/3344573 to your computer and use it in GitHub Desktop.
Save stevommmm/3344573 to your computer and use it in GitHub Desktop.
tmux config
# 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