Skip to content

Instantly share code, notes, and snippets.

@codatory
Created April 6, 2012 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codatory/2322160 to your computer and use it in GitHub Desktop.
Save codatory/2322160 to your computer and use it in GitHub Desktop.
TMUX Conf
# Switch me back to ^A, thanks
set-option -g prefix C-a
unbind-key C-b
bind-key a send-prefix
# I miss ^A^A and ^ASpace
bind-key C-a last-window
bind-key Space next-window
bind-key C-Space previous-window
# 256 colors rock
set-option -g default-terminal screen-256color
# Right is some CPU stats, so terminal green
set-option -g status-right-bg default
set-option -g status-right-fg colour71
# Windows are medium gray; current window is white
set-window-option -g window-status-fg colour244
set-window-option -g window-status-current-fg colour15
# Status bar has a dim gray background
set-option -g status-bg colour234
set-option -g status-fg colour0
# Left shows the session name, in blue
set-option -g status-left-bg default
set-option -g status-left-fg colour74
# Start numbering windows at 1 not 0
set-option -g base-index 1
set-option -g status-right "#(uptime | cut -d "," -f 4 | awk '{print $3} {print $4} {print $5}' | xargs) #[fg=yellow](#(ruby ~/.zsh/lib/free-memory.rb)) #[fg=green]%D %I:%M %p"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment