Separate plug.vim for neovim

This commit is contained in:
Geert Stappers 2019-01-03 14:43:46 +01:00
parent c857d4bddd
commit 56e4988a3c
2 changed files with 4 additions and 4 deletions

View File

@ -60,14 +60,14 @@ $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
```sh ```sh
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.neovim
``` ```
###### Windows (PowerShell) ###### Windows (PowerShell)
```powershell ```powershell
md ~\AppData\Local\nvim\autoload md ~\AppData\Local\nvim\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.neovim'
(New-Object Net.WebClient).DownloadFile( (New-Object Net.WebClient).DownloadFile(
$uri, $uri,
$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath( $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(

View File

@ -94,13 +94,13 @@ Neovim~
>> Unix~ >> Unix~
> >
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.neovim
< <
>> Windows (PowerShell)~ >> Windows (PowerShell)~
> >
md ~\AppData\Local\nvim\autoload md ~\AppData\Local\nvim\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.neovim'
(New-Object Net.WebClient).DownloadFile( (New-Object Net.WebClient).DownloadFile(
$uri, $uri,
$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath( $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(