This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Bootstrap script for fresh macOS setup with chezmoi dotfiles | |
| # Usage: curl -fsSL https://gist.githubusercontent.com/.../bootstrap.sh | bash | |
| set -euo pipefail | |
| echo "🚀 Starting dotfiles bootstrap..." | |
| # 1. Install Homebrew if not present | |
| if ! command -v brew &>/dev/null; then |