Skip to content

Instantly share code, notes, and snippets.

@strobelt
Last active July 21, 2023 02:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save strobelt/23c3df20b4b21a3a01964ab7e5aecceb to your computer and use it in GitHub Desktop.
Save strobelt/23c3df20b4b21a3a01964ab7e5aecceb to your computer and use it in GitHub Desktop.
Install latest NeoVim in Debian
# 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
@vcfvct
Copy link

vcfvct commented Jul 21, 2023

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

@strobelt
Copy link
Author

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