diff --git a/.tmux.conf b/.tmux.conf index 6d70009..18a7cd5 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -3,3 +3,16 @@ set-option -g status-interval 2 set-option -g status-justify "centre" set-option -g status-left-length 60 set-option -g status-right-length 90 + + +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' + +# Other examples: +# set -g @plugin 'github_username/plugin_name' +# set -g @plugin 'git@github.com/user/plugin' +# set -g @plugin 'git@bitbucket.com/user/plugin' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run -b '~/.tmux/plugins/tpm/tpm' diff --git a/.yadm/bootstrap b/.yadm/bootstrap index 050fc2d..ab7f852 100755 --- a/.yadm/bootstrap +++ b/.yadm/bootstrap @@ -11,6 +11,11 @@ echo "~Installing SpaceVim~" curl -sLf https://spacevim.org/install.sh | bash +# Setup package manager for for tmux +echo "~Installing tpm~" +git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm + + # Install Oh-My-Zsh (https://github.com/robbyrussell/oh-my-zsh/) echo "~Installing Oh My Zsh~" sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"