Simple, yet sufficient nvim config made by anthonio9.
Install vim-plug
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Open nvim ~/.config/nvim/init.vim
and run :PlugInstall
.
Install coc-clangd for C/C++ development
Run :CocInstall coc-clangd
, if there’s no clangd
in your $PATH
, you can run :CocCommand clangd.install
to install the latest release from GitHub.
Install yarn
# manjaro
sudo pacman -S yarn
Move to ~/.local/share/nvim/plugged/coc.nvim
and run yarn install
.