Skip to content

Instantly share code, notes, and snippets.

@jrmolin
jrmolin / Dockerfile
Last active September 3, 2024 15:46
Build neovim for Linux/aarch64 with Docker and git (mostly automated)
FROM ubuntu:24.04
RUN apt-get update && \
apt-get install -y \
ninja-build \
gettext \
cmake \
unzip \
curl \
build-essential
@jrmolin
jrmolin / initialize-local-repo.sh
Created June 28, 2014 00:55
initialize a local git repository with a default.xml, and then `repo init` based on that repository
!/bin/bash
REPO=`which repo`
if test "x$REPO" = "x"; then
mkdir -pv $HOME/bin
# get the repo script
curl https://storage.googleapis.com/git-repo-downloads/repo > $HOME/bin/repo
chmod a+x $HOME/bin/repo