-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
34 lines (25 loc) · 1.23 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
## /~https://github.com/tmux/tmux/blob/master/example_tmux.conf
## ============================================================================
## settings
## ============================================================================
set-option -g set-titles on
set-option -g set-titles-string "#S / #W"
## ============================================================================
## MOUSE
## ============================================================================
# /~https://github.com/tmux/tmux/issues/145
# use this with CMD-R for copying with CMD-C in Terminal (see View - Allow mouse reporting)
set -g mouse on
## ============================================================================
## /~https://github.com/tmux-plugins/tpm
## ============================================================================
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# /~https://github.com/tmux-plugins/tmux-resurrect
set -g @plugin 'tmux-plugins/tmux-resurrect'
# /~https://github.com/tmux-plugins/tmux-continuum
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'