From 4a3fdeca47f34949ebd8f1c8ad464eb7023f8d80 Mon Sep 17 00:00:00 2001 From: Joseph Dalrymple Date: Wed, 3 Jun 2020 14:31:31 -0500 Subject: [PATCH] Fixed Git Plugin Example I thought it was a bit peculiar that the README.md suggested using `git@bitbucket.com/user/plugin`, but went ahead with that syntax. After seemingly endlessly scratching my head, while trying to figure out what the issue, I reverted to the traditional git URL syntax (SSH syntax) and it worked. ``` set -g @plugin 'git@bitbucket.com:user/plugin_name` ``` Verified by running `./.tmux/plugins/tpm/bin/install_plugins` manually with a fresh version of TMUX + TPM with both styles. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9fb8232..824a557 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ 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' +# 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'