Created
September 30, 2019 00:27
-
-
Save stknohg/ce3a30356d69b2ee0857379964c153f5 to your computer and use it in GitHub Desktop.
WindowsにKaoriya版Vimをインストールするスクリプト。バージョンは決め打ち
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$params = @{ | |
Uri = 'https://github.com/koron/vim-kaoriya/releases/download/v8.1.1048-20190325/vim81-kaoriya-win64-8.1.1048-20190325.zip'; | |
OutFile = Join-Path $env:TEMP 'vim.zip' | |
} | |
Invoke-WebRequest @params | |
Expand-Archive -LiteralPath (Join-Path $env:TEMP 'vim.zip') -DestinationPath $env:ProgramFiles |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment