Skip to content

Instantly share code, notes, and snippets.

View strobelt's full-sized avatar
🐙
Multitasking

Luiz Strobelt strobelt

🐙
Multitasking
View GitHub Profile
@strobelt
strobelt / CLI
Created May 18, 2022 03:14
Set env var on Alpine Dockerfile
docker build -t charles . && docker run -it --rm charles /bin/sh
@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