Tmux Customization: .tmux.conf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% cat ~/.tmux.conf
# Setting the sencond prefix: C-space
set -g prefix2 C-space

# Enable mouse support
set -g mouse on

# splitting panes with | and -
bind | split-window -h
bind - split-window -v

# Set vi as the default editor
set -g status-keys vi

# Set bind key to reload configuration file
bind r source-file ~/.tmux.conf \; display "Reloaded!"

# Set foreground/background style for active window
setw -g window-status-current-style "fg=white bg=black bold"