DEV Community

Kay Gosho
Kay Gosho

Posted on • Updated on

Fix neovim errors

image

From latest OSX update, some plugins started to not working. Especially, deoplete and UltiSnips show errors.

The reason may be missing Python3, so the following commands will fix them:

brew install neovim
pip3 install -U neovim
nvim

# in neovim
:UpdateRemotePlugins
Enter fullscreen mode Exit fullscreen mode

If you still have troubles, run checkhealth in vim.

:checkhealth
Enter fullscreen mode Exit fullscreen mode

Top comments (0)