macOS development environment configuration. Goal: automate fully, minimize manual steps.
cd ~ && mkdir -p Projects && cd Projects
git clone https://github.com/eitanpo/dotfiles.git
cd dotfiles && source bootstrap.shThis will:
- Install Homebrew and packages (if missing)
- Set brew bash as default shell
- Sync dotfiles to
~ - Create agent skills symlinks
You may be prompted for your password or to install Xcode Command Line Tools.
- Configure Git credentials:
git config --global user.email "you@example.com" git config --global user.name "Your Name"
- Apply macOS preferences (optional):
source macos.sh
After initial setup, these aliases are available:
dotfiles-apply # Apply dotfiles from repo to ~
dotfiles-save # Save changes from ~ back to repo
update # Update Homebrew packages and regenerate BrewfileSee AGENTS.md for detailed documentation on:
- Repository structure
- Where to add aliases, functions, exports, packages
- Agent configuration (skills, rules, instructions)