Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs:fixed the pynvim installation command in quickstart #567

Merged
merged 2 commits into from
Sep 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docs/extensions-plugins/neovim/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,18 @@ In this tutorial, we'll walk you through the process of setting up and using the

A few things to note before you start installing the Pieces Neovim Plugin:

- The Python based Neovim plugins requires the `pynvim` Python package, which is not included in the default Neovim installation. You can install it by running the following command:
- The Python based Neovim plugins requires the `pynvim` Python package, which is not included in the default Neovim installation.
You can install it in MacOS/Windows by running the following command:

```bash
pip install pynvim
```

If you use Ubuntu 22+ or an Ubuntu-based-distro -

```bash
sudo apt install python3-pynvim
```

- Ensure that you have at least one Neovim package manager installed. For instance, you can install `vim-plug`.
In order to install `vim-plug`, run the following command in your terminal:
Expand Down