-
Notifications
You must be signed in to change notification settings - Fork 1
/
tmux.conf
39 lines (22 loc) · 807 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
32
33
34
35
36
37
38
## Tmux configuration
# no confirmation when closing a window or pane
bind-key & kill-window
bind-key x kill-pane
# allow scrolling buffer with mouse
set -g mouse on
# allow apps inside tmux to set tmux clipboard
set -s set-clipboard on
# enable true color
set -sa terminal-features ',alacritty:RGB,xterm-256color:RGB,gnome*:RGB'
## Plugin
# List of plugins
set -g @plugin 'tmux-plugins/tpm#v3.1.0'
set -g @plugin 'tmux-plugins/tmux-sensible#v3.0.0'
set -g @plugin 'tmux-plugins/tmux-resurrect#v4.0.0'
set -g @plugin 'erikw/tmux-powerline#v3.0.0'
# Configuration
# tmux-resurrect
# enables saving and restoring tmux pane contents
set -g @resurrect-capture-pane-contents 'on'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'