Skip to content

Instantly share code, notes, and snippets.

@strobelt
strobelt / install_neovim.sh
Last active October 28, 2025 05:36
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
@TallonRain
TallonRain / config.fish
Last active September 25, 2025 21:02
Set up Fish Shell to use gpg-agent as the SSH agent for Yubikeys and other smart cards on macOS
# Add these contents to ~/.config/fish/config.fish
# If using Brew, config.fish is located in /usr/local/Cellar/fish/[version]/etc/fish/
# Generally recommend using the installer from https://fishshell.com instead of brew
# to avoid version updates overwriting the config file
# Start or re-use a gpg-agent.
gpgconf --launch gpg-agent
# Ensure that GPG Agent is used as the SSH agent
set -e SSH_AUTH_SOCK