Skip to content

Instantly share code, notes, and snippets.

@kawaz
Last active October 21, 2024 14:22
Show Gist options
  • Save kawaz/393c7f62fe6e857cc3d9 to your computer and use it in GitHub Desktop.
Save kawaz/393c7f62fe6e857cc3d9 to your computer and use it in GitHub Desktop.
install neovim to amazonlinux
#!/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
sudo make install
)
@alexhallam
Copy link

My pleasure

@proffapt
Copy link

Thanks mate! Was tired of being forced to use nano :D

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