Text · 737 bytes Raw Blame History
1 ##### plugins (declare first, run TPM last) #####
2
3 # tmux-yank: copy without snapping back; use Wayland clipboard
4 set -g @yank_action 'copy-pipe'
5 set -g @yank_selection_mouse 'clipboard'
6 set -g @override_copy_command 'wl-copy'
7
8 # Resurrect auto-restore
9 set -g @continuum-restore 'on'
10
11 # Plugins
12 set -g @plugin 'tmux-plugins/tpm'
13 set -g @plugin 'tmux-plugins/tmux-yank'
14 set -g @plugin 'tmux-plugins/tmux-copycat'
15 set -g @plugin 'tmux-plugins/tmux-open'
16 set -g @plugin 'sainnhe/tmux-fzf'
17 set -g @plugin 'junegunn/tmux-fzf-url'
18 set -g @plugin 'tmux-plugins/tmux-resurrect'
19 set -g @plugin 'tmux-plugins/tmux-continuum'
20 set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
21
22 # TPM init (must be last in this file)
23 run '~/.tmux/plugins/tpm/tpm'
24