ubuntu下编译neovim

# 安装编译依赖
sudo apt-get install libtool libtool-bin autoconf automake cmake g++ pkg-config unzip -y
# 获取源代码
git clone https://github.com/neovim/neovim
cd neovim
make
sudo make install
# 让neovim支持python和python3
sudo apt-get install python3 python3-pip python-pip -y
pip install neovim
pip3 install neovim