I work on Windows, nvim is not there and I have unsuccessfully tried to install it. Do you have any advice for me?
Here is what I did:
-
Install the Firenvim extension to Chrome from Firenvim - Chrome Web Store
-
Download nvim-win64.zip from Release NVIM v0.5.0 · neovim/neovim · GitHub
-
Copy the
Neovim
folder toC:\Program Files
-
Execute
C:\Program Files\Neovim\bin\nvim.exe
and tell Windows you trust it (I don’t know if I need this, but I did it anyway) -
Create a virtual environment with
pynvim
(I use Anaconda, which doesn’t havepynvim
):conda create --name neovim python
activate neovim
pip install pynvim
-
Execute
C:\Program Files\Neovim\bin\nvim-qt.exe
and:-
:let g:python_host_prog='C:\Users\stefanomenci\AppData\Local\conda\conda\envs\neovim\python.exe'
-
-
Start PowerShell and execute (see here):
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |` ni "$(@($env:XDG_DATA_HOME, $env:LOCALAPPDATA)[$null -eq $env:XDG_DATA_HOME])/nvim-data/site/autoload/plug.vim" -Force
I don’t understand what the following steps listed here do in Linux and how to do them in Windows.