Skip to content

Commit 30f2cb3

Browse files
committed
Changed the wording of a few lines in the getting started guide and fixed a few typos.
1 parent e66c2ef commit 30f2cb3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

docs/guide/getting_started.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ several editors.
1111
## Neovim
1212

1313
### Install the Server
14-
Download and extract the PowerShell Editor Services [releases page](https://github.com/PowerShell/PowerShellEditorServices/releases)
15-
server to a directory of your choice. Remember the path that you extract the
14+
Download and extract the PowerShell Editor Services server from the
15+
[releases page](https://github.com/PowerShell/PowerShellEditorServices/releases)
16+
into a directory of your choice. Remember the path that you extract the
1617
project into.
1718
```powershell
1819
$DownloadUrl = 'https://github.com/PowerShell/PowerShellEditorServices/releases/latest/download/PowerShellEditorServices.zip';
@@ -25,15 +26,15 @@ Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
2526
### Install Neovim's Basic LSP Configurations
2627
Neovim has a repository of basic LSP configurations for a number of languages,
2728
including PowerShell. Install the LSP configuration into one of the package
28-
directories inside `$XDG_CONFIG_HOME`. The path `$XDG_CONFIG_HOME will vary
29+
directories inside `$XDG_CONFIG_HOME`. The path `$XDG_CONFIG_HOME` will vary
2930
depending on which operating system you are on:
3031

3132
| OS | Path |
3233
| ---------- | -------------------------- |
3334
| Windows | `$HOME/AppData/local/nvim` |
3435
| *nix/macOS | `$HOME/.config/nvim` |
3536

36-
The easiest way is to install the configuration is to clone the repository
37+
The easiest way is to install the LSP configuration is to clone the repository
3738
using git:
3839
```powershell
3940
git clone https://github.com/neovim/nvim-lspconfig.git "$HOME/AppData/local/nvim/pack/complete/start/nvim-lspconfig"
@@ -49,12 +50,12 @@ Expand-Archive -Path $ZipPath -DestinationPath $InstallPath;
4950
```
5051

5152
> NOTE: If the corresponding neovim configuration and package directories have
52-
> not been created yet, create them before cloning the LSP configuration
53+
> not been created yet, create them before installing the LSP configuration
5354
> repository.
5455
5556
### Configure the Server
56-
Once the basic language configurations have been installed, you should add this
57-
to your init.lua:
57+
Once the basic language configurations have been installed, add this to your
58+
init.lua:
5859
```lua
5960
local on_attach = function(client, bufnr)
6061
-- Enable completion triggered by <c-x><c-o>

0 commit comments

Comments
 (0)