From 6b063a9555564dbf76285cbc3426582430efe546 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Sun, 13 Jul 2014 21:34:53 +0200 Subject: [PATCH] Let the windows start with 0; added nicer right status area with load indicator --- .tmux.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 7628329..6a62c8f 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -33,8 +33,8 @@ bind e setw synchronize-panes on bind E setw synchronize-panes off # set first window to index 1 (not 0) to map more to the keyboard layout... -set-option -g base-index 1 -set-window-option -g pane-base-index 1 +#set-option -g base-index 1 +#set-window-option -g pane-base-index 1 # color scheme (styled as vim-powerline) set -g status-left-length 52 @@ -51,6 +51,7 @@ set -g status-left '#[fg=colour235,bg=colour252,bold] ❐ #S #[fg=colour252,bg=c set -g window-status-format "#[fg=colour235,bg=colour252,bold] #I #W " #set -g window-status-current-format "#[fg=colour234,bg=colour39]⮀#[fg=black,bg=colour39,noreverse,bold] #I: #W #[fg=colour39,bg=colour234,nobold]⮀" set -g window-status-current-format "#[fg=colour234,bg=colour39]#[fg=black,bg=colour39,noreverse,bold] #I: #W #[fg=colour39,bg=colour234,nobold]" +set -g status-right '#(hostname) #[bg=#bbbbbb]#[fg=#000000] #(cut -d " " -f -3 /proc/loadavg) #[bg=#4e4e4e]#[fg=#ffffff]#(date +" %H:%M ")' # Patch for OS X pbpaste and pbcopy under tmux. #set-option -g default-command "which reattach-to-user-namespace > /dev/null && reattach-to-user-namespace -l $SHELL || $SHELL"