Title here
Summary here
:help init.vim
and press Enter
. This will take you to the help section specifically for the init.vim
file.init.vim
file.C:\Users\<YourUserName>\AppData\Local\nvim\
. If this directory doesn’t exist, create it:mkdir %LOCALAPPDATA%\nvim
and press Enter
.init.vim
file already exists in this directory. If it doesn’t, you’ll need to create one:New > Text Document
, and name it init.vim
. Ensure the .txt
extension is removed if file extensions are visible.init.vim
and choose Edit with Neovim
to open the file in Neovim.set number " Enable line numbers
set relativenumber " Enable relative line numbers
set noerrorbells " Turn off error bells
set tabstop=4 " Number of spaces tabs count for
:wq
in Neovim and pressing Enter
.nvim
in the command prompt.