File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Getting Started
2
- PowerShell Editor Services project provides a Language Server Protocol (LSP)
2
+ The PowerShell Editor Services project provides a Language Server Protocol (LSP)
3
3
HTTP server that runs outside the editor. The server supplies rich editor
4
4
functionality like code completion, syntax highlighting, and code annotation.
5
5
This document will guide you through getting a minimal setup working with
@@ -43,9 +43,9 @@ Alternatively, you can extract the zip file into the same place:
43
43
``` powershell
44
44
$DownloadUrl = 'https://github.com/neovim/nvim-lspconfig/archive/refs/heads/master.zip';
45
45
$ZipPath = "$HOME/AppData/local/nvim/nvim-lspconfig.zip";
46
- $InstallPath = "$HOME/AppData/local/nvim/nvim-lspconfig";
46
+ $InstallPath = "$HOME/AppData/local/nvim/pack/complete/start/ nvim-lspconfig";
47
47
Invoke-WebRequest -Method 'GET' Uri $DownloadUrl -OutFile $ZipPath;
48
- Expand-Archive -Path $ZipPath -DestinationPath "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig" ;
48
+ Expand-Archive -Path $ZipPath -DestinationPath $InstallPath ;
49
49
```
50
50
51
51
> NOTE: If the corresponding neovim configuration and package directories have
You can’t perform that action at this time.
0 commit comments