Last active
December 12, 2024 00:21
-
-
Save strobelt/23c3df20b4b21a3a01964ab7e5aecceb 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 release from GitHub releases and pipe it to tar to extract it to /usr | |
curl -sL https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz \ | |
| sudo tar -xzf - --strip-components=1 --overwrite -C /usr | |
Thanks for the heads-up @vcfvct, I updated the gist to download NeoVim directly from the latest release available and extract it to /usr
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the script! (Bing Chat gives your gist when asking how to install latest neovim for debian) 😄
Looks like neovim does not release deb any more according to this change.
any reliable source for deb going forward? @strobelt