Skip to content

Instantly share code, notes, and snippets.

@k3karthic
Created June 3, 2023 21:57
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 k3karthic/29bf945bbd0905595a63d6e10fb4cd4c to your computer and use it in GitHub Desktop.
Save k3karthic/29bf945bbd0905595a63d6e10fb4cd4c to your computer and use it in GitHub Desktop.
Update Neovim (AppImage w/o FUSE)
#!/usr/bin/env sh
cd /tmp
echo https://github.com/neovim/neovim/releases/download/stable/nvim.appimage
curl -OL https://github.com/neovim/neovim/releases/download/stable/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage --appimage-extract
mkdir -p ~/bin/nvim
mv /tmp/squashfs-root ~/bin/nvim
rm nvim.appimage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment