-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
55 lines (39 loc) · 1.36 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
45
46
47
48
49
50
51
52
53
54
set -g default-terminal "tmux-256color"
# set -ga terminal-overrides ',*:RGB'
set -g update-environment 'DBUS_SESSION_BUS_ADDRESS'
set -g history-limit 6000
set -g display-time 4000
set -g mouse on
set -g focus-events on
# Start tab numbering at 1
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on
set -sg escape-time 10
set -g pane-border-style bg=colour232,fg=colour235
set -g pane-active-border-style bg=colour232,fg=colour239
set -g window-active-style bg=colour232
set -g status-style bg=colour235,fg=cyan
set -g message-style bg=colour235,fg=white
set -g message-command-style bg=colour235,fg=white,bold
set -g mode-style bg=colour173,fg=black,dim
set -g status-left " #S "
set -g status-left-style bg=colour237
set -g status-right " #{=21:pane_title} %m-%d %H:%M "
set -g status-right-style bg=colour237
set -g window-status-format " #I:#W#F "
set -g window-status-current-format " #I:#W#F "
set -g window-status-current-style bg=colour234
set -g set-titles on
set -g set-titles-string "#h(#S)"
source-file ~/.tmux/screen-keys.conf
source-file ~/.tmux/vim-keys.conf
if-shell "tmux -V | awk '{exit !($2 >= \"3.2\")}'" {
source-file ~/.tmux/popup.conf
}
bind S choose-session
bind @ choose-window 'join-pane -h -s "%%"'
bind K kill-pane
if-shell 'test -e ~/.tmux.conf.local' {
source ~/.tmux.conf.local
}