Skip to content

Commit 809634d

Browse files
committed
Switched to describing the LSP config repository as quickstart configurations in the getting started document.
1 parent 1b42250 commit 809634d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/guide/getting_started.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ Invoke-WebRequest -Method 'GET' -Uri $DownloadUrl -OutFile $ZipPath;
2323
Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
2424
```
2525

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:
3131

3232
| OS | Path |
3333
| ---------- | -------------------------- |
3434
| Windows | `$HOME/AppData/local/nvim` |
3535
| *nix/macOS | `$HOME/.config/nvim` |
3636

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:
3939
```powershell
4040
git clone https://github.com/neovim/nvim-lspconfig.git "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig"
4141
```
@@ -50,8 +50,8 @@ Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
5050
```
5151

5252
> 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.
5555
5656
### Configure the Server
5757
Once the basic language configurations have been installed, add this to your

0 commit comments

Comments
 (0)