TODO: Walkthrough video
Required neovim version NVIM v0.9+
, if your distro's package repository doesn't provide then have a look at this reddit comment.
After Installation check the version by running nvim --version
Create a repos dir in home dir and cd into it
mkdir ~/repos && cd ~/repos
Clone my linux config repo
git clone https://github.com/anurag3301/my-linux-setup.git
Create a symbolic link of my neovim config dir to your ~/.config/nvim
ln -s $HOME/repos/my-linux-setup/config/nvim $HOME/.config/nvim
Open neovim, you should get some errors, just press enter key and run :PackerInstall
followed by :PackerSync
. This will install all the plugins.
Install the Required LSP servers using :Mason
, if that doesnt work then install them manually as follow
To get the latest changed you just have to do cd ~/repos/my-linux-setup && git pull
. This will pull the latest commits and its a symbolic link to ~/.config
, so the changes will reflect there also.