Created
March 15, 2012 17:21
-
-
Save baseonmars/2045420 to your computer and use it in GitHub Desktop.
Dane's tmux file
This file contains 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
# 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