-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
39 lines (29 loc) · 903 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
35
36
37
38
39
bind r source-file ~/.tmux.conf \;
set -g prefix C-q
unbind C-b
bind S split-window -v
bind s split-window -h
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
bind -r C-h select-window -t :-
bind -r C-l select-window -t :+
bind -r H resize-pane -L 5
bind -r J resize-pane -D 5
bind -r K resize-pane -U 5
bind -r L resize-pane -R 5
set-option -sa terminal-features ',alacritty:RGB'
set-option -sa terminal-features ',screen-256color:RGB'
set -g status-fg black
set -g status-bg blue
set-option -g pane-border-style "fg=cyan, bg=black"
set-option -g pane-active-border-style "fg=white, bg=black"
set -g status-position top
set-option -g status-interval 1
set -g status-left-length 40
set -g status-right-length 60
set-option -g status-left "#H:[#P]"
set-option -g status-right "[%Y-%m-%d(%a) %H:%M:%S]"
set-option -sg escape-time 10
set-option -g mouse on