Last active
March 30, 2025 11:14
-
-
Save kawaz/393c7f62fe6e857cc3d9 to your computer and use it in GitHub Desktop.
Revisions
-
kawaz revised this gist
Mar 17, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ 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 -
kawaz renamed this gist
Mar 13, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
kawaz created this gist
Mar 13, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ #!/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 ( cd "$(mktemp -d)" git clone https://github.com/neovim/neovim.git cd neovim make CMAKE_BUILD_TYPE=Release sudo make install )