-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
36 lines (24 loc) · 811 Bytes
/
.tmux.conf
File metadata and controls
36 lines (24 loc) · 811 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
30
31
32
33
34
35
36
set -g default-terminal "tmux-256color"
set -g display-panes-time 5000
set-option -ga terminal-overrides ",xterm-256color:RGB"
unbind C-b
set-option -g prefix C-b
bind C-b send-prefix
unbind C-Space
set-option -g prefix2 C-Space
bind C-Space send-prefix
# plugin manager
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# plugins
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
set -g @continuum-save-interval '15' # in minutes
set -g @resurrect-strategy-nvim 'session'
bind -r H resize-pane -L 25
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r L resize-pane -R 25
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'