Configurations for neovim.
After installing nvim, go to ~/.config folder and clone the project:
git clone https://github.com/noreng-jg/nvim
You'll need to install vim-plug plugin manager, by running:
curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimAfter that open nvim, and install the required dependencies by running:
:PlugInstall
You can also install the coc-dependencies as listed in coc-dependencies file using:
:CocInstall "dependency"
- You might also want to install
yarnwhich will help to customize better the coc-extensions. - For vue development check the vetur setup.
- In order to use
Braceyyou will need to install a python3 neovim package:
pip3 install --user neovim