Skip to content

Instantly share code, notes, and snippets.

@maorv
Last active March 23, 2021 19:21
Show Gist options
  • Save maorv/74866262b082e24668103da717de92b5 to your computer and use it in GitHub Desktop.
Save maorv/74866262b082e24668103da717de92b5 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
sudo apt install qt5-default libqt5widgets5
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
@VolailleInc
Copy link

VolailleInc commented Jan 30, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment