Files and Navigations - Remaps part 1

First, lets quit our current vim experience and re-open up our vimrc.

# for vim
vim ~/.vimrc
# for neovim - this may be different depending on your flavor
vim ~/.config/nvim/init.vim

If your path is different for neovim but you don't know what it is, execute the following in neovim to expose the path!!!

" Neovim only
:echo stdpath("config")

If you didn't save everything from the vim rc section, here is the complete vimrc thus far from Vim My Way and Color My Pencils.

set scrolloff=8
set number
set relativenumber
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent

" This was from the colorscheme section
colorscheme desert