-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.tmux.conf
More file actions
29 lines (24 loc) · 797 Bytes
/
Copy path.tmux.conf
File metadata and controls
29 lines (24 loc) · 797 Bytes
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
# use 256 color palette
set -g default-terminal "screen-256color"
# use mouse
set -g mouse on
# Window number starts from 1
set -g base-index 1
# Pane numbering starts from 1
setw -g pane-base-index 1
# when a window closes renumber the remaining windows
set -g renumber-windows on
# swap windows to the left and right
bind -n C-S-Left swap-window -t -1
bind -n C-S-Right swap-window -t +1
# appearance
set -g status-style fg=white,bg=default
set -g window-status-style fg=colour8,bg=default
set -g window-status-current-style fg=blue,bg=default
set -g message-style fg=white,bg=black,bright
set -g pane-active-border-style fg=blue
set -g status-left ''
set -g status-justify left
setw -g window-status-format ' #W '
setw -g window-status-current-format ' #W '
set -g status-right ''