Last active
May 6, 2025 12:34
-
-
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-linux-x86_64.tar.gz \ | |
| sudo tar -xzf - --strip-components=1 --overwrite -C /usr | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Glad I could help you @keponk! Thanks for the correction too. Just updated the Gist!