X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=vim-sensible%2Finstall.ps1;h=8bd13bf783cc0e49741884635712c5f86d723cf3;hb=1cbc906cab936cebd32d60039334219ba0f077f9;hp=bcf03f546470f9c541f96b293e0ff24776636de8;hpb=ee34ace0ded7395ba1d84a64364673a1f3f6a048;p=webi-installers%2F.git diff --git a/vim-sensible/install.ps1 b/vim-sensible/install.ps1 index bcf03f5..8bd13bf 100644 --- a/vim-sensible/install.ps1 +++ b/vim-sensible/install.ps1 @@ -1,7 +1,13 @@ #!/usr/bin/env pwsh IF (!(Test-Path -Path "$Env:USERPROFILE\.vim\pack\plugins\start")) { - New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force + New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force | out-null } Remove-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start\vim-sensible" -Recurse -ErrorAction Ignore -& git clone --depth=1 https://tpope.io/vim/sensible.git "$Env:USERPROFILE\.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. +#$sensible_repo = "https://tpope.io/vim/sensible.git" +$sensible_repo = "https://github.com/tpope/vim-sensible.git" +& git clone --depth=1 "$sensible_repo" "$Env:USERPROFILE\.vim\pack\plugins\start\vim-sensible"