# Sensible tmux defaults. (Install tmux in the devbox if you use it; harmless otherwise.) set -g mouse on set -g history-limit 50000 set -g base-index 1 setw -g pane-base-index 1 set -g renumber-windows on set -sg escape-time 10 set -g default-terminal "tmux-256color" set -ga terminal-overrides ",*256col*:Tc" # splits keep the current path bind '"' split-window -v -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}" bind c new-window -c "#{pane_current_path}" # reload bind r source-file ~/.tmux.conf \; display "tmux.conf reloaded"