Skip to content
Willis Wang edited this page Aug 13, 2022 · 9 revisions

Neovim

vim-plug

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.

pynvim

Deoplete requires pynvim. To install pynvim, use Python's package manager:

pip3 install pynvim

LanguageClient-neovim

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.

Clone this wiki locally