Skip to content

Instantly share code, notes, and snippets.

@strobelt
strobelt / install_neovim.sh
Last active May 19, 2025 09:20
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