-
-
Save JeffLabonte/590468b87a21481a68fdcf1093a90b45 to your computer and use it in GitHub Desktop.
Install latest NeoVim in Debian
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
# Download latest NeoVim .deb package from GitHub using GH API | |
wget -o nvim.deb \ | |
$(curl -s 'https://api.github.com/repos/neovim/neovim/releases/latest' \ | |
| jq -r '.assets|.[]|select(.content_type == "application/x-debian-package")|.browser_download_url') | |
# Install .deb | |
sudo dpkg -i nvim.deb | |
# Clean up | |
rm -f nvim.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment