Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ This script pulls the latest changes and copies `.gitconfig`, `.pre-commit-confi

### Initial Mac Setup

For a new Mac, run the setup script to install actionlint, Cocoapods, Docker CLI, Flutter, GitHub CLI, GitLab CLI, Go, Homebrew, LLVM, mole, Node.js, Ollama, opencode, Python, QEMU, Ruby, Rust, yamllint, Zsh, and configure Git hooks globally. It also offers to log in to Docker Hub:
For a new Mac, run the setup script to install actionlint, Cocoapods, Docker CLI, Flutter, GitHub CLI, GitLab CLI, Go, Homebrew, Kiro CLI, LLVM, mole, Node.js, Ollama, opencode, Python, QEMU, Ruby, Rust, yamllint, Zsh, and configure Git hooks globally. It also offers to log in to Docker Hub:

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/bniladridas/github-dotfiles/main/setup-mac.sh)"
Expand Down
8 changes: 8 additions & 0 deletions setup-mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ fi
echo "Installing opencode..."
brew install opencode

echo "Installing Kiro CLI..."
if curl -fsSL https://cli.kiro.dev/install | bash; then
log "Kiro CLI installed successfully."
else
log "ERROR: Failed to install Kiro CLI."
exit 1
fi

echo "Installing Ollama..."
brew install ollama

Expand Down