mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:30:04 +08:00
7c9058447b
update dein to 9ab8106405
69 lines
2.1 KiB
PowerShell
69 lines
2.1 KiB
PowerShell
param(
|
|
[Parameter(Mandatory=$true)][String]$PluginDir
|
|
)
|
|
|
|
$DeinVimRepo = "https://github.com/Shougo/dein.vim"
|
|
|
|
# Convert the installation directory to absolute path and create plugin directory
|
|
$PluginDir = (New-Item -Type Directory -Force $PluginDir).FullName
|
|
|
|
$InstallDir = Join-Path $PluginDir "repos/github.com/Shougo/dein.vim"
|
|
Write-Output "Install to `"$InstallDir`"..."
|
|
if (Test-Path $InstallDir) {
|
|
Write-Output "`"$InstallDir`" already exists!"
|
|
}
|
|
|
|
# check git command
|
|
if (!(Get-Command git -ErrorAction SilentlyContinue -OutVariable $_)) {
|
|
throw 'Please install git or update your path to include the git executable!'
|
|
}
|
|
Write-Output ""
|
|
|
|
# make plugin dir and fetch dein
|
|
Write-Output "Begin fetching dein..."
|
|
git clone $DeinVimRepo $InstallDir
|
|
Write-Output "Done.`n"
|
|
|
|
Write-Host -ForegroundColor Yellow "Please add the following settings for dein to the top of your vimrc (Vim) or init.vim (NeoVim) file:"
|
|
|
|
Write-Output ""
|
|
Write-Output ""
|
|
Write-Output "`"dein Scripts-----------------------------"
|
|
Write-Output "if &compatible"
|
|
Write-Output " set nocompatible `" Be iMproved"
|
|
Write-Output "endif"
|
|
Write-Output ""
|
|
Write-Output "`" Required:"
|
|
Write-Output "set runtimepath+=$InstallDir"
|
|
Write-Output ""
|
|
Write-Output "`" Required:"
|
|
Write-Output "call dein#begin('$PluginDir')"
|
|
Write-Output ""
|
|
Write-Output "`" Let dein manage dein"
|
|
Write-Output "`" Required:"
|
|
Write-Output "call dein#add('$InstallDir')"
|
|
Write-Output ""
|
|
Write-Output "`" Add or remove your plugins here like this:"
|
|
Write-Output "`"call dein#add('Shougo/neosnippet.vim')"
|
|
Write-Output "`"call dein#add('Shougo/neosnippet-snippets')"
|
|
Write-Output ""
|
|
Write-Output "`" Required:"
|
|
Write-Output "call dein#end()"
|
|
Write-Output ""
|
|
Write-Output "`" Required:"
|
|
Write-Output "filetype plugin indent on"
|
|
Write-Output "syntax enable"
|
|
Write-Output ""
|
|
Write-Output "`" If you want to install not installed plugins on startup."
|
|
Write-Output "`"if dein#check_install()"
|
|
Write-Output "`" call dein#install()"
|
|
Write-Output "`"endif"
|
|
Write-Output ""
|
|
Write-Output "`"End dein Scripts-------------------------"
|
|
Write-Output ""
|
|
Write-Output ""
|
|
|
|
Write-Output "Done."
|
|
|
|
Write-Output "Complete setup dein!"
|