Skip to content

Instantly share code, notes, and snippets.

View vcfvct's full-sized avatar
👨‍💻
coding

leon vcfvct

👨‍💻
coding
View GitHub Profile
@strobelt
strobelt / install_neovim.sh
Last active July 21, 2023 02:21
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