Created
July 17, 2019 12:48
-
-
Save kyp0717/fa478a14c8eb2e4ca9606f0abb864665 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Installing | |
| Their installation instructions are spot on, they present many ways to install in various OSs. | |
| I personally prefer to use the Appimage method. | |
| curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
| chmod u+x nvim.appimage | |
| ./nvim.appimage | |
| Python Provider | |
| A lot of awesome plugins like VDebug and NeoSnippet require Python provider support. | |
| Firt check your installation: | |
| nvim +checkhealth | |
| It will present you an overview of the Neovim status and in the section health#provider#check you will see the extra providers status when they are ok they look like this: | |
| ## Python 3 provider (optional) | |
| - INFO: `g:python3_host_prog` is not set. Searching for python3 in the environment. | |
| - INFO: Executable: /usr/bin/python3 | |
| - INFO: Python3 version: 3.6.5 | |
| - INFO: python3-neovim version: 0.2.6 | |
| - OK: Latest python3-neovim is installed: 0.2.6 | |
| Usually, it provides you straightforward information about what is going on and what exactly is wrong. The most common situations are that the provider is not installed or is outdated. | |
| The Python support is provided via Python 2 and 3 package manager or pip. | |
| To install it: | |
| pip install neovim && \ | |
| pip3 install neovim | |
| To update it: | |
| pip install neovim --upgrade && \ | |
| pip3 install neovim --upgrade | |
| Run :checkhealth again, everything should be ok now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment