fix: remove apostrophes from powershell command

This commit is contained in:
egor 2026-06-08 17:16:18 +03:00
parent 88e3147181
commit fd49c24165

View file

@ -56,7 +56,7 @@ file as suggested [here][auto].
#### Windows (PowerShell)
```powershell
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |`
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
ni $HOME/vimfiles/autoload/plug.vim -Force
```
@ -79,7 +79,7 @@ curl -fLo ~/.var/app/io.neovim.nvim/data/nvim/site/autoload/plug.vim --create-di
#### Windows (PowerShell)
```powershell
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |`
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force
```