Skip to content

Instantly share code, notes, and snippets.

@matthewjberger
Forked from maorv/create_neovim_qt_deb.sh
Created April 25, 2017 21:53
Show Gist options
  • Save matthewjberger/62ad3413e9547ba3e13979b427fbb318 to your computer and use it in GitHub Desktop.
Save matthewjberger/62ad3413e9547ba3e13979b427fbb318 to your computer and use it in GitHub Desktop.
Install neovim-qt on ubuntu
#!/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