Created
June 3, 2023 21:57
-
-
Save k3karthic/29bf945bbd0905595a63d6e10fb4cd4c to your computer and use it in GitHub Desktop.
Update Neovim (AppImage w/o FUSE)
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 characters
#!/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