From: Simon Ruderich Date: Mon, 6 Jun 2011 19:59:17 +0000 (+0200) Subject: tmux.conf: Add status line settings. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=531de3edcb8532e57a2aeb339ca7c843cb5560ff;p=config%2Fdotfiles.git tmux.conf: Add status line settings. --- diff --git a/tmux.conf b/tmux.conf index 916807c..8268798 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,6 +1,21 @@ # Tmux configuration file. +# STATUS LINE + +# White text. +set-option -g status-fg white +# Bright blue background color (colour12). +set-option -g status-bg colour12 + +# Nothing left of window list. +set-option -g status-left "" +# Current load average and hostname on the right. +set-option -g status-right "#(uptime | cut -d: -f5- | tr -d ,) #H" + + +# BINDINGS + # Use Vi(m) key bindings. set-option -g status-keys vi set-window-option -g mode-keys vi