Conversation
Create a comprehensive setup system for new Mac machines: - bootstrap.sh: Automated setup script that installs Homebrew, Rustup, and runs Homebrew Bundle - Brewfile: Declares all packages to install including: - Development tools: node, git, tmux, ripgrep, fzf, jq - Applications: Emacs (cask), iTerm2, Docker, Rectangle - Mac App Store: Evernote (via mas) - Fonts: Source Code Pro, Fira Code, JetBrains Mono - README.md: Complete documentation for setup process, file overview, and troubleshooting guide The bootstrap script handles both Intel and Apple Silicon Macs, installs Rustup separately as requested, and prompts to apply the existing .macos system defaults.
Changes: - Add rustup to Brewfile for centralized package management - Update bootstrap.sh to initialize rustup after Homebrew installation - Use rustup-init with --no-modify-path flag (shell config handled by dotfiles) - Add detailed explanation in README about the hybrid approach Benefits of this approach: - rustup binary managed by Homebrew (visible in Brewfile) - Rust toolchain properly managed via rustup (not direct brew install rust) - Consistent with Rust community best practices - Updates via 'rustup update' as recommended by Rust project - Centralized package tracking while maintaining proper toolchain handling
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.