Skip to content

Instantly share code, notes, and snippets.

@kawaz
Last active March 30, 2025 11:14
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.

Revisions

  1. kawaz revised this gist Mar 17, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install_neovim_to_amazonlinux.sh
    Original 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
    sudo pip-3.4 install neovim --upgrade
    (
    cd "$(mktemp -d)"
    git clone https://github.com/neovim/neovim.git
  2. kawaz renamed this gist Mar 13, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. kawaz created this gist Mar 13, 2016.
    12 changes: 12 additions & 0 deletions install_nvim.sh
    Original 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
    )