-
Notifications
You must be signed in to change notification settings - Fork 0
Neovim
Willis Wang edited this page Aug 13, 2022
·
9 revisions
The large majority of my neovim plugins are managed using vim-plug, a package manager within neovim.
To install vim-plug:
curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Then call :PlugInstall within neovim to install all plugins.
Deoplete requires pynvim. To install pynvim, use Python's package manager:
pip3 install pynvim
https://github.com/autozimu/LanguageClient-neovim
It seems like a manual rust build is required to work on arm64 machines. To do so, follow this here: https://github.com/autozimu/LanguageClient-neovim/issues/1236.