Skip to content

Instantly share code, notes, and snippets.

View Misterguruman's full-sized avatar

Joseph P Langford Misterguruman

  • Lynchburg, VA
  • 16:59 (UTC -04:00)
View GitHub Profile
#!/usr/bin/env bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake
sudo yum install -y python34-{devel,pip}
sudo pip-3.4 install neovim --upgrade
(
cd "$(mktemp -d)"
git clone https://github.com/neovim/neovim.git
cd neovim
make CMAKE_BUILD_TYPE=Release