This is my pride and joy.
This config has been given more of my time than my dog, my wife, and probably god...
...take a look if you're a member of the 9th circle of vim.
Note
See Install Recipes for additional Windows and Linux specific notes and quick install snippets
Note
Backup your previous configuration (if any exists)
Neovim's configurations are located under the following paths, depending on your OS:
| OS | PATH |
|---|---|
| Linux, MacOS | $XDG_CONFIG_HOME/nvim, ~/.config/nvim |
| Windows (cmd) | %localappdata%\nvim\ |
| Windows (powershell) | $env:LOCALAPPDATA\nvim\ |
Fork this repo so that you have your own copy that you can modify, then install by cloning the fork to your machine using one of the commands below, depending on your OS.
Note
Your fork's URL will be something like this:
https://github.com/<your_github_username>/kickstart.nvim.git
You likely want to remove lazy-lock.json from your fork's .gitignore file
too - it's ignored in the kickstart repo to make maintenance easier, but it's
recommended to track it in version control.
Note
If following the recommended step above (i.e., forking the repo), replace
nvim-lua with <your_github_username> in the commands below
Linux and Mac
git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvimWindows
If you're using cmd.exe:
git clone https://github.com/nvim-lua/kickstart.nvim.git "%localappdata%\nvim"
If you're using powershell.exe
git clone https://github.com/nvim-lua/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
Start Neovim
nvimThat's it! Lazy will install all the plugins you have. Use :Lazy to view
the current plugin status. Hit q to close the window.
Read through the init.lua file in the configuration folder for more
information about my extension and plugin configuration.
Note
For more information about a particular plugin check its repository's documentation - use google yo....or ask chat-gipity.
The Only Video You Need to Get Started with Neovim
Because you should be using linux if you can.
Ubuntu Install Steps - for the plebs like myself
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip neovim
Debian Install Steps - you okay bro?
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip curl
# Now we install nvim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
sudo rm -rf /opt/nvim-linux-x86_64
sudo mkdir -p /opt/nvim-linux-x86_64
sudo chmod a+rX /opt/nvim-linux-x86_64
sudo tar -C /opt -xzf nvim-linux-x86_64.tar.gz
# make it available in /usr/local/bin, distro installs to /usr/bin
sudo ln -sf /opt/nvim-linux-x86_64/bin/nvim /usr/local/bin/
Fedora Install Steps
sudo dnf install -y gcc make git ripgrep fd-find unzip neovim
Arch Install Steps - Because I use arch
sudo pacman -S --noconfirm --needed gcc make git ripgrep fd unzip neovim