@@ -23,19 +23,19 @@ Invoke-WebRequest -Method 'GET' -Uri $DownloadUrl -OutFile $ZipPath;
23
23
Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
24
24
```
25
25
26
- ### Install Neovim's Basic LSP Configurations
27
- Neovim has a repository of basic LSP configurations for a number of languages,
28
- including PowerShell. Install the LSP configuration into one of the package
29
- directories inside ` $XDG_CONFIG_HOME ` . The path ` $XDG_CONFIG_HOME ` will vary
30
- depending on which operating system you are on:
26
+ ### Install Neovim's Quickstart LSP Configurations
27
+ Neovim has a repository of quickstart LSP configurations for a number of
28
+ languages, including PowerShell. Install the quickstart LSP configuration into
29
+ one of the package directories inside ` $XDG_CONFIG_HOME ` . The path
30
+ ` $XDG_CONFIG_HOME ` will vary depending on which operating system you are on:
31
31
32
32
| OS | Path |
33
33
| ---------- | -------------------------- |
34
34
| Windows | ` $HOME/AppData/local/nvim ` |
35
35
| * nix/macOS | ` $HOME/.config/nvim ` |
36
36
37
- The easiest way is to install the LSP configuration is to clone the repository
38
- using git:
37
+ The easiest way is to install the quickstart configuration is to clone the
38
+ repository using git:
39
39
``` powershell
40
40
git clone https://github.com/neovim/nvim-lspconfig.git "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig"
41
41
```
@@ -50,8 +50,8 @@ Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
50
50
```
51
51
52
52
> NOTE: If the corresponding neovim configuration and package directories have
53
- > not been created yet, create them before installing the LSP configuration
54
- > repository.
53
+ > not been created yet, create them before installing the quickstart LSP
54
+ > configuration repository.
55
55
56
56
### Configure the Server
57
57
Once the basic language configurations have been installed, add this to your
0 commit comments