Skip to content

Instantly share code, notes, and snippets.

@strobelt
Last active May 6, 2025 12:34
Show Gist options
  • 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-linux-x86_64.tar.gz \
| sudo tar -xzf - --strip-components=1 --overwrite -C /usr
@keponk
Copy link

keponk commented May 6, 2025

nice and clean script. best duckduckgo result for what I wanted.
Nomenclature of the URL has changed to this in case you want to update:
https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz

@strobelt
Copy link
Author

strobelt commented May 6, 2025

Glad I could help you @keponk! Thanks for the correction too. Just updated the Gist!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment