NeoVim - Kickstart
Install Choco Prerequisite (run CMD as ADMIN)
winget install --accept-source-agreements chocolatey.chocolatey
Install NeoVim and Depenencies (run another instance of CMD as ADMIN)
choco install -y neovim git ripgrep wget fd unzip gzip mingw make
Install Kickstart
git clone https://github.com/nvim-lua/kickstart.nvim.git "%localappdata%\nvim"
Start NeoVim
NeoVim will begin to install all the plugins from the init.lua file that was pulled from Kickstart.
Once all these plugins are installed, you can use 'q' to exit the LazyVim Plugin Manager.

Kickstart is meant to give you the most sane defaults for NeoVim to get started on your own configuration, it is not meant as a standalone distribution.
To make changes to NeoVim, you'll access the file below:
%USERPROFILE%\AppData\Local\nvim\init.lua
Whenever we want to configure NeoVim, we'll use that file specifically to do it.
See the NeoTree article for an example of how we'll do that.