1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +01:00

Set all base-indices to 0 so panes with tmuxinator work as expected

This commit is contained in:
Michiel Scholten
2014-08-11 16:43:08 +02:00
parent 6890d94a65
commit a53e7b1783

View File

@@ -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"