diff options
Diffstat (limited to 'tmux.config')
-rw-r--r-- | tmux.config | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tmux.config b/tmux.config index bbca376..1cc9483 100644 --- a/tmux.config +++ b/tmux.config @@ -89,11 +89,15 @@ set-option -g status-right-length 90 set-option -g status-left "#(~/.tmux/powerline.sh left)" set-option -g status-right "#(~/.tmux/powerline.sh right)" -# Make the escape faster +# Make the escape faster, faster command sequences set -s escape-time 0 # Deal with screens having different set-window-option -g aggressive-resize # Bind the last window command -bind-key l last-window +bind-key C-b last-window + +# Use base 1 numbering, 0 base is a big stretch +set -g base-index 1 +setw -g pane-base-index 1 |