1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| # set prefix2 to Ctrl+Space set -g prefix2 C-Space # use | and - to split the windows unbind '"' unbind '%' bind - split-window -v bind | split-window -h # use vi keys in buffer setw -g mode-keys vi set -g mouse on set -g history-limit 20000 set -g default-terminal "screen-256color" # start windows and panes at 0 set -g base-index 0 setw -g pane-base-index 0 # set re-number windows set -g renumber-windows on # set foreground/background style for active window setw -g window-status-current-style "fg=white bg=black bold" # set bind key "r" to reload configuration file bind r source-file ~/.tmux.conf \; display "Reloaded!"
|