Darryl Dias

05 Jul 2023 in tutorialslinuxneovim

Kickstart.nvim is a starter configuration for Neovim that is small, single-file and well-documented. You can use it as a starting point to create your custom configuration. I have been using it for a while now with a few changes.

Setting up Kickstart.nvim

Creating the config directory (Skip this step if you already have it setup)

mkdir ~/.config/nvim

To download and save the config enter the command below. This will download the init.lua from GitHub and save it to the config location: ~/.config/nvim.

curl -o ~/.config/nvim/init.lua https://raw.githubusercontent.com/nvim-lua/kickstart.nvim/master/init.lua

Once the above command runs successfully, the next time you open Neovim, it will run through the setup.

To open Neovim run the command nvimin the Terminal.

nvim

That's how we kickstart Neovim. Let me know in the comments below how you liked the Kickstart.nvim setup if you have a different approach.