From 531de3edcb8532e57a2aeb339ca7c843cb5560ff Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 6 Jun 2011 21:59:17 +0200 Subject: [PATCH] tmux.conf: Add status line settings. --- tmux.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 -- 2.44.2