X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=vim-sensible%2Finstall.sh;h=6df2de5e09c48a2293ba8a1b4b6c3ca5ba150cec;hb=91512157ab426c87e0a82b594620e90e324b23a3;hp=50a84edf4a7f21df649ee7851a283233a1d432d1;hpb=797ea8983bd3578b7bb5ac2e042e781486364f2f;p=webi-installers%2F.git diff --git a/vim-sensible/install.sh b/vim-sensible/install.sh index 50a84ed..6df2de5 100644 --- a/vim-sensible/install.sh +++ b/vim-sensible/install.sh @@ -6,7 +6,14 @@ function __init_vim_sensible() { mkdir -p "$HOME/.vim/pack/plugins/start" rm -rf "$HOME/.vim/pack/plugins/start/sensible" "$HOME/.vim/pack/plugins/start/vim-sensible" - git clone --depth=1 https://tpope.io/vim/sensible.git "$HOME/.vim/pack/plugins/start/vim-sensible" + + # Note: we've had resolution issues in the past, and it doesn't seem likely + # that tpope will switch from using GitHub as the primary host, so we + # skip the redirect and use GitHub directly. + # Open to changing this back in the future. + #my_sensible_repo="https://tpope.io/vim/sensible.git" + my_sensible_repo="https://github.com/tpope/vim-sensible.git" + git clone --depth=1 "${my_sensible_repo}" "$HOME/.vim/pack/plugins/start/vim-sensible" } __init_vim_sensible