DEV Community

Cover image for My Neovim Config Setup for Linux.
Nishu Murmu
Nishu Murmu

Posted on

My Neovim Config Setup for Linux.

This config is used for mainly web development developed completely in Lua language.

1.Download and Install Neovim
2.Clone this repository

https://github.com/nishu-murmu/dotfiles.git
Enter fullscreen mode Exit fullscreen mode

3.Remove /nvim folder from this repository that you cloned and paste in your /.config folder if you're in linux/OSX or paste it in your ~/AppData/Local/ folder.
4.Open Neovim and wait for Packer to install all the plugins then type :checkhealth command.
checkhealth
5.If you face any errors while :checkhealth, that is because you haven't installed support for python and Neovim.
You need to install it gloabally so that it is in your path.
python

For python support

pip install pynvim
Enter fullscreen mode Exit fullscreen mode

For Neovim support

npm install -g neovim
Enter fullscreen mode Exit fullscreen mode

P.S. Any suggestions are welcomed. 👐

Top comments (0)