How to Install Neovim on Windows 10/11 (2026) | Step-by-Step Guide
Below is a step-by-step guide to install Neovim on Windows 10/11:
Step 1: Download Neovim
Download Neovim Microsoft installers (.msi) which provide a standard Windows installation experience.
- Go to the Neovim website: https://neovim.io/, then click on Install Now.
- Download the latest Windows MSI file nvim-win64.msi by clicking on Windows from the Install from download section.
Step 2: Install Using the Neovim MSI Installer
- Double-click the nvim-win64.msi file.
- On the Neovim Setup Wizard, click Next.
- Accept the license agreement by checking "I accept the terms in the license agreement" ➡️ Click Next ➡️ Next ➡️ Install.
- Click Yes if you get a security prompt.
- Once installed, click Finish.
Step 3: Verify Installation
-
Open Command Prompt by pressing Win + R, typing
cmd, and run the command below:nvim --version - If you see the Neovim version and other details, the installation was successful.
Step 4: Launch Neovim
-
Open a terminal (Command Prompt, PowerShell, or Windows Terminal) and type:
nvim - Neovim will launch in terminal mode.
- To come out of Neovim terminal, press esc key and type below:
:q!
Step 5: Create Your First Config
-
Neovim looks for its configuration files in:
%LOCALAPPDATA%\nvim -
Create the folder and add one of the following files:
init.vim(Vimscript)init.lua(Lua — recommended for newer configs)
-
Example
init.luaconfiguration:vim.opt.number = true -- Show line numbers vim.opt.expandtab = true -- Use spaces instead of tabs vim.opt.shiftwidth = 4 -- Indentation width











Comments
Post a Comment