Skip to content

Instantly share code, notes, and snippets.

@baseonmars
Created March 15, 2012 17:21
Show Gist options
  • Save baseonmars/2045420 to your computer and use it in GitHub Desktop.
Save baseonmars/2045420 to your computer and use it in GitHub Desktop.
Dane's tmux file
# Use C-a, like screen
unbind C-b
unbind l
set -g prefix C-a
bind-key '`' last-window
bind-key C-a send-keys 'C-a'
setw -g mode-keys vi
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
unbind %
unbind "
bind '|' split-window -h
bind '-' split-window -v
set -g default-terminal "screen-256color"
set -g history-limit 10000
# THEME
set -g status-bg black
set -g status-fg white
set -g status-interval 60
set -g status-left-length 30
set -g status-left '#[fg=green](#S) #(whoami)@#H#[default]'
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=blue]%H:%M#[default]'
set-window-option -g window-status-current-bg red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment