Skip to content

Instantly share code, notes, and snippets.

@Racle
Racle / update-neovim
Created September 12, 2025 07:37
Update Neovim to latest nightly appImage version
#!/bin/bash
# This script updates Neovim to the latest nightly AppImage version.
# It automatically fetches the latest AppImage URL from the Neovim GitHub releases,
# downloads it, makes it executable, and moves it to /usr/bin/nvim.
# If the URL cannot be determined automatically, it prompts the user to provide it manually.
url=$(curl -s https://api.github.com/repos/neovim/neovim/releases/tags/nightly \
| grep "browser_download_url" \
| grep "nvim-linux-x86_64.appimage" \
| grep -v "zsync" \
@Racle
Racle / 0_reuse_code.js
Created June 17, 2016 07:05
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console