Created
May 29, 2021 00:01
-
-
Save akent/7fb8e3cf191f6790cea499d3215aab80 to your computer and use it in GitHub Desktop.
Simple script to update to latest nightly nvim
This file contains 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 characters
#!/bin/sh | |
set -e | |
wget https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage | |
chmod +x nvim.appimage | |
./nvim.appimage --appimage-extract | |
rm -rf nvim | |
mv squashfs-root nvim | |
rm nvim.appimage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment