Title here
Summary here
Your .vimrc
file is where you configure Vim settings to match your preferences. Here’s how to create and edit this file on macOS.
:help vimrc
and press Enter
. This will take you to the help section on the .vimrc
file..vimrc
file..vimrc
file if it doesn’t already exist:touch ~/.vimrc
.vimrc
file in Vim:vim ~/.vimrc
set relativenumber number " Displays line numbers
Esc
, then type :wq
and press Enter
.