my dotz
1# Global opts
2set -g base-index 1
3setw -g pane-base-index 1
4setw -g mode-keys vi
5set-option -sg escape-time 0
6set -s escape-time 0
7set-option -g renumber-windows on
8
9# use vim-like keys for splits and windows
10bind-key \\ split-window -h -c "#{pane_current_path}"
11bind-key - split-window -v -c "#{pane_current_path}"
12bind-key h select-pane -L
13bind-key j select-pane -D
14bind-key k select-pane -U
15bind-key l select-pane -R
16
17# shortcuts
18bind-key r source-file ~/.tmux.conf \; display-message "tmux.conf reloaded."
19
20# colors hurt my eyes
21set -g status-bg black
22set -g status-fg white