Skip to content

Instantly share code, notes, and snippets.

@akent
Created May 29, 2021 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akent/7fb8e3cf191f6790cea499d3215aab80 to your computer and use it in GitHub Desktop.
Save akent/7fb8e3cf191f6790cea499d3215aab80 to your computer and use it in GitHub Desktop.
Simple script to update to latest nightly nvim
#!/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