-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
44 lines (37 loc) · 1.08 KB
/
.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
35
36
37
38
39
40
41
42
43
44
# Pane management
bind | split-window -h
bind _ split-window -v
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# Resize panes like vim
bind < resize-pane -L 10
bind > resize-pane -R 10
bind - resize-pane -D 10
bind + resize-pane -U 10
# See all color options:
# $ for i in {0..255}; do
# > printf "\x1b[38;5;${i}mcolour${i}\x1b[0m\n"
# > done
# Set window and pane index to 1 (0 by default)
set-option -g base-index 1
setw -g pane-base-index 1
# Status line
set -g status-left ""
set -g status-right "{#S} "
set -g status-bg default
setw -g window-status-bg colour254
setw -g window-status-current-bg colour153 #colour241
setw -g window-status-current-fg colour4 #white
set-window -g window-status-format ' #I #W '
set-window -g window-status-current-format ' #I #W '
set -g mode-mouse on
set -g mouse-resize-pane on
set -g mouse-select-pane on
set -g mouse-select-window on
#bind -r C-h select-window -t :-
#bind -r C-l select-window -t :+
#bind-key -n C-[ select-window -t :-
#bind-key -n C-] select-window -t :+
# tip: use movew -r to renumber all windows