tmux.conf: Remove use of tpm

With tmux3.0 tpm does not work anymore. Let's not rely on
it for loading and updating plugins.
This commit is contained in:
Sanchayan Maity 2019-12-12 13:39:05 +05:30 committed by Sanchayan Maity
parent 13af45b091
commit a3f84d9493

View file

@ -48,13 +48,10 @@ set-option -g default-terminal "tmux-256color"
set-option -sa terminal-overrides ',tmux-256color:RGB' set-option -sa terminal-overrides ',tmux-256color:RGB'
# Plugins # Plugins
set -g @plugin 'tmux-plugins/tpm' run-shell '~/.tmux/plugins/tmux-resurrect/resurrect.tmux'
set -g @plugin 'tmux-plugins/tmux-resurrect' run-shell '~/.tmux/plugins/tmux-continuum/continuum.tmux'
set -g @plugin 'tmux-plugins/tmux-continuum' run-shell '~/.tmux/plugins/tmux-yank/yank.tmux'
set -g @plugin 'tmux-plugins/tmux-yank' run-shell '~/.tmux/plugins/tmux-copycat/copycat.tmux'
set -g @plugin 'tmux-plugins/tmux-copycat' run-shell '~/.tmux/plugins/tmux-open/open.tmux'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @continuum-restore 'on' set -g @continuum-restore 'on'
run '~/.tmux/plugins/tpm/tpm'