DEV Community

Discussion on: ¿ Cómo instalar Neovim en Windows ?

Collapse
 
teodev1611 profile image
Teo

Puedes ayudarme corriendo esto en powershell?

(gcm nvim).Path
Enter fullscreen mode Exit fullscreen mode

Si es que manda error no estaría instalado puedes probarlo con scoop:

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time

# Download the scoop package manager
Invoke-WebRequest get.scoop.sh | Invoke-Expression

# Installation
scoop install neovim
Enter fullscreen mode Exit fullscreen mode