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
| #!/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" |