search
top

How to save your vim options so they load each time you start vim

Create a file in your home folder named “.vimrc”. This file will be automatically loaded each time your start vim.

Show or hide line numbers in vim

Show line numbers:

:set number

Hide line numbers:

:set nonumber

top