From a53e7b1783148a9013fab010137bb915780e0c9e Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 11 Aug 2014 16:43:08 +0200 Subject: [PATCH] Set all base-indices to 0 so panes with tmuxinator work as expected --- .tmux.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index e9cc9ac..c2a5c5b 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -34,7 +34,9 @@ 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 0 +#set-window-option -g pane-base-index 1 +set-window-option -g pane-base-index 0 # color scheme (styled as vim-powerline) set -g status-left-length 52 @@ -55,6 +57,7 @@ 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"