Created
May 23, 2013 19:35
-
-
Save csfrancis/5638810 to your computer and use it in GitHub Desktop.
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
unbind C-b | |
set -g prefix C-a | |
bind a send-prefix | |
unbind ^C | |
bind ^C new-window | |
bind c new-window | |
unbind ^a | |
bind C-a last-window | |
bind a last-window | |
unbind % | |
bind | split-window -h | |
bind - split-window -v | |
unbind ^D | |
bind ^D detach | |
bind d detach | |
set -g history-limit 16384 | |
setw -g mode-keys vi | |
set -g set-titles on | |
set -g set-titles-string '[#S:#I #h] #W' | |
set -g status-interval 2 | |
set -g status-left '#(date +"%H:%M ")' | |
set -g status-right '#(uptime | sed "s/,/\\n/g" | grep users) |#(uptime | cut -d"," -f3- | cut -d":" -f2-) | #(~/.tmux/ifstat_sys.sh)' | |
set -g status-right-length 60 | |
set -g status-position top | |
# Colours | |
set -g status-bg colour235 #base02 | |
set -g status-fg colour102 | |
set -g status-attr default | |
setw -g window-status-fg colour244 | |
setw -g window-status-bg default | |
setw -g window-status-current-fg colour152 | |
setw -g window-status-current-bg default | |
set -g pane-border-fg colour235 | |
set -g pane-active-border-fg colour240 | |
set -g message-bg colour235 | |
set -g message-fg colour152 | |
set -g display-panes-active-colour colour33 | |
set -g display-panes-colour colour152 | |
setw -g mode-bg colour152 | |
setw -g clock-mode-colour colour152 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment