Neovim Customization

In this blog I will show you how to customize neovim the way I think is productive.

Installing Neovim

First you need to have Neovim installed.

You can do that by running these commands below:

Windows
winget install Neovim.Neovim
Mac
brew install neovim
Linux Debian
sudo apt install neovim
Linux Arch
sudo pacman -S neovim

Cloning the customization repo

First go into the config directory:

Linux
cd ~/.config/nvim
Windows
cd %localappdata%\nvim

If there is no nvim directory, create it.

Now you need to clone the customization repo.

You can do that by running the following command:

git clone https://github.com/Abdullah-coder2013/CoolNeovimSetup

Get the files out of the "CoolNeovimSetup" dir
and put them in the nvim dir.

Delete the "CoolNeovimSetup" dir.

Then run:

nvim

That's it!