From b233fe1b385d3acf748cc91963a894a873a14340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20C=C3=B3rdova=20Avila?= Date: Sat, 10 Jul 2021 11:02:38 -0700 Subject: [PATCH 1/2] Switch to https --- bundle/bundles.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/bundle/bundles.txt b/bundle/bundles.txt index feb8c96..22ef857 100644 --- a/bundle/bundles.txt +++ b/bundle/bundles.txt @@ -1,11 +1,11 @@ -dockerfile git@github.com:ekalinin/Dockerfile.vim.git -fugitive git@github.com:tpope/vim-fugitive.git -nerdtree git@github.com:preservim/nerdtree.git -nerdtree-git git@github.com:Xuyuanp/nerdtree-git-plugin.git -nim git@github.com:zah/nim.vim.git -solarized git@github.com:altercation/vim-colors-solarized.git -syntastic git@github.com:vim-syntastic/syntastic.git -terraform git@github.com:hashivim/vim-terraform.git +dockerfile https://github.com/ekalinin/Dockerfile.vim.git +fugitive https://github.com/tpope/vim-fugitive.git +nerdtree https://github.com/preservim/nerdtree.git +nerdtree-git https://github.com/Xuyuanp/nerdtree-git-plugin.git +nim https://github.com/zah/nim.vim.git +solarized https://github.com/altercation/vim-colors-solarized.git +syntastic https://github.com/vim-syntastic/syntastic.git +terraform https://github.com/hashivim/vim-terraform.git terragrunt https://github.com/yorinasub17/vim-terragrunt.git toml https://github.com/cespare/vim-toml.git -zig git@github.com:ziglang/zig.vim.git +zig https://github.com/ziglang/zig.vim.git From a25301156591756149b1430f3081cedc39d93298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20C=C3=B3rdova=20Avila?= Date: Sat, 10 Jul 2021 11:02:58 -0700 Subject: [PATCH 2/2] Fix some typing errors --- bundle/bundles.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/bundles.sh b/bundle/bundles.sh index 672f69c..c264884 100755 --- a/bundle/bundles.sh +++ b/bundle/bundles.sh @@ -2,7 +2,7 @@ usage() { cat << EOT Usage: - ./${0##*/} list|update|clone|save + ./${0##*/} ls|update|clone|save Commands: ls -> List all the bundle repos @@ -32,7 +32,7 @@ repos() { clone_bundles() { # Clone the bundles in 'bundles.txt' - locals dn repo + local dn repo while read -r dn repo ; do if [[ -d "$dn" ]]; then echo "*** Dir [red][$dn][reset] already exists!" | colors