-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmux.conf
32 lines (24 loc) · 970 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
unbind-key C-b
set -g prefix 'C-\'
bind-key 'C-\' send-prefix
# Enable mouse support
set -g mouse on
#
# List of plugins
#
set -g @plugin 'tmux-plugins/tpm'
# basic tmux settings everyone can agree on
set -g @plugin 'tmux-plugins/tmux-sensible'
# Persists tmux environment across system restarts.
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Continuous saving of tmux environment.
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @continuum-restore 'on'
# Tmux plugin for copying to system clipboard. Works on OSX, Linux and Cygwin.
set -g @plugin 'tmux-plugins/tmux-yank'
# Automatic tpm installation
# https://github.com/tmux-plugins/tpm/blob/master/docs/automatic_tpm_installation.md
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'