-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
40 lines (29 loc) · 1.01 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
set-option -g status-position top
set-option -g status-left-length 90
set-option -g status-right-length 90
set-option -g status-left '#H:[#P]'
set-option -g status-right '#(wifi) #(battery --tmux) [%Y-%m-%d(%a) %H:%M]'
# set-option -g status-utf8 on
set-option -g status-interval 1
set-option -g status-justify centre
set -s escape-time 0
set-option -g base-index 1
set-window-option -g pane-base-index 1
set-window-option -g mode-keys vi
bind r source-file ~/.tmux.conf \; display "Reloaded!"
bind -T copy-mode-vi v send -X begin-selection
bind-key | split-window -h
bind-key - split-window -v
bind-key -r C-h select-window -t :-
bind-key -r C-l select-window -t :+
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
bind-key -r H resize-pane -L 5
bind-key -r J resize-pane -D 5
bind-key -r K resize-pane -U 5
bind-key -r L resize-pane -R 5
set -g default-terminal "screen-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
source -q ~/.tmux.conf.local