-
-
Save matthewjberger/62ad3413e9547ba3e13979b427fbb318 to your computer and use it in GitHub Desktop.
Install neovim-qt on ubuntu
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
#!/bin/sh | |
echo "Install neovim from ppa" | |
sudo add-apt-repository -y ppa:neovim-ppa/unstable | |
sudo apt-get update | |
sudo apt-get install -y neovim | |
echo "Compile and install neovim-qt" | |
git clone https://github.com/maorv/neovim-qt.git | |
cd neovim-qt && mkdir build && cd build | |
cmake ../ | |
cpack -G DEB -D CPACK_DEBIAN_PACKAGE_NAME=neovim-qt -D CPACK_DEBIAN_PACKAGE_MAINTAINER=`whoami` ../ | |
sudo dpkg -i neovim-qt-*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment