From bb9adf1b4d7dc7bb62a9a9a75fa8c205a892fd61 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sun, 3 Apr 2011 12:27:16 +0200 Subject: [PATCH] add my minimal tmux.conf with basic Screen binding --- .tmux.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..1ab1210 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,15 @@ +unbind C-b +unbind l +set -g prefix C-a +bind-key C-a last-window +bind r source-file ~/.tmux.conf +set -g default-terminal "screen-256color" +set -g history-limit 1000 + +# 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]'