NeoVim is an extended version of Vim, which is much cooler to use than Vim. The following is a brief record of the process of installing NeoVim on Ubuntu 16.04, which is actually relatively simple.
In order to use add-apt-repository
, you need to install the following packages first:
sudo apt-get install software-properties-common
Then choose stable or unstable version to install, see below.
sudo add-apt-repository ppa:neovim-ppa/stable
sudo apt update
sudo apt install -y neovim
Because some plug-ins only support 0.3
and above, in order to use the plug-ins, you need to install the unstable version:
sudo add-apt-repository ppa:neovim-ppa/unstable
sudo apt update
sudo apt install -y neovim
You can use it after installation. Use the command nvim
to open Neovim. It is recommended to continue reading vim-plug to learn about NeoVim's plug-in installation tool.
Recommended Posts