# Start windows and panes at 1, not 0 set -g base-index 1 setw -g pane-base-index 1 set-window-option -g pane-base-index 1 set-option -g renumber-windows on # set default terminal set -g default-terminal "screen-256color" # Enable mouse support set -g mouse on # Open panes in current directory bind '"' split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" # Style # non-active window # I=Index W=WindowName # set -g window-status-format " #I:#W " # set -g window-status-style fg=white,bg=black # active window # I=Index W=WindowName set -g window-status-current-format " #I:#W " set -g window-status-current-style fg=white,bg=black # Keybindings # Set prefix unbind C-b set -g prefix C-Space bind C-Space send-prefix bind k clear-history