Skip to content

Instantly share code, notes, and snippets.

@bombsimon
Created September 19, 2018 21:23
Show Gist options
  • Save bombsimon/9e4f5607e01854f9624cf92c486561cf to your computer and use it in GitHub Desktop.
Save bombsimon/9e4f5607e01854f9624cf92c486561cf to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake python36-{devel,pip}
sudo pip-3.6 install neovim --upgrade
(
cd $HOME
tmpdir="$(mktemp -d)"
cd $tmpdir
git clone https://github.com/neovim/neovim.git
cd neovim
make CMAKE_BUILD_TYPE=Release
sudo make install
cd ../../
rm -r $tmpdir
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment