Skip to content

Instantly share code, notes, and snippets.

@kimizuy
kimizuy / install.sh
Last active March 2, 2026 09:13
Dotfiles bootstrap entrypoint for a fresh Mac
#!/bin/bash
# Dotfiles bootstrap entrypoint — designed to be hosted on a public Gist:
# curl -fsSL https://gist.githubusercontent.com/kimizuy/b5c1a148b44f3ca52b6791c8f5b99079/raw/install.sh | bash
# The repository is private, so we authenticate with gh before cloning.
set -euo pipefail
REPO="kimizuy/dotfiles"
REPO_URL="https://github.com/${REPO}.git"
DOTFILES_DIR="$HOME/Documents/dev/dotfiles"