-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
34 lines (27 loc) · 941 Bytes
/
.tmux.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Options
# set the default terminal
set-option -g default-terminal "screen-256color"
set-window-option -g xterm-keys on
# window renaming
set-option -g visual-activity on
set-window-option -g allow-rename off
set-window-option -g automatic-rename off
set-window-option -g monitor-activity on
# Start window numbering at 1
set-option -g base-index 1
# status line changes
set-option -g status-keys vi
set-option -g status-interval 1
# vi keys in copy mode
set-window-option -g mode-keys vi
# Automatically renumber windows
set-option -g renumber-windows on
# Status Bar
set-option -g status-position bottom
set -g status-fg green
set -g status-bg black
set-window-option -g window-status-style fg=green,bg=black
set-window-option -g window-status-current-style fg=black,bg=green
set-window-option -g window-status-activity-style none
# source tmux config file
bind-key r source-file ~/.tmux.conf \; display-message "source-file done"