Skip to content

Instantly share code, notes, and snippets.

@stknohg
Created September 30, 2019 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stknohg/ce3a30356d69b2ee0857379964c153f5 to your computer and use it in GitHub Desktop.
Save stknohg/ce3a30356d69b2ee0857379964c153f5 to your computer and use it in GitHub Desktop.
WindowsにKaoriya版Vimをインストールするスクリプト。バージョンは決め打ち
$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