Got a new machine? Tired of reading medium articles or sifting through all the latest and greatest plugins that sort-of work?
Same, so I decided to create this repo to help me when I inevitably have to set up a new machine for work/pleasure. I put this together for my personal development needs with the languages that I commonly use. There is a lot more that can be done here, but hopefully this helps someone do what I just did and saves them a few hours.
This script automates the setup of a development environment on macOS. It installs and configures a variety of tools and applications commonly used by developers + myself. This was done quickly with the help of Claude 3.5 Sonnet, so if there are any errors, take it up with Anthropic.
Neovim configs coming soon.
This document provides a list of all tools and applications installed by the setup script, along with their descriptions and official website links.
- macOS (tested on macOS Sonoma, but should work on recent versions)
- Internet connection
- Administrator privileges
-
Clone this repository:
git clone https://github.com/milancr/init_machine.git cd init_machine
-
Make the script executable:
chmod +x init_machine.sh
-
Run the script:
./init_machine.sh
The script is interactive and will prompt you for input at various stages. You can choose which components to install.
To see what the script would do without making any changes to your system, use the --dry-run
flag:
./install_dev_environment.sh --dry-run
The script can install and configure the following:
- Homebrew
- Oh My Zsh
- Various GUI applications via Homebrew Casks (e.g., Visual Studio Code, Firefox)
- Command-line tools via Homebrew Formulae (e.g., git, node, python)
- Development tools and languages (e.g., Go, Python, Node.js)
- Shell plugins and configurations
For a full list of installations, refer to the installation_reference.md
file generated by the script.
After running the script:
- Restart your terminal or run
source ~/.zshrc
to apply all changes. - Run
p10k configure
to set up your Powerlevel10k prompt. - Install Docker Desktop from the .dmg file in your Downloads folder.
- Configure Spotify by running
spot
in the terminal. - Add your OpenAI API key to
~/.config/openaiapirc
if you chose to set it up.
You can customize the script by modifying the lists of casks, formulae, and taps in the script file. Feel free to add or remove items based on your needs, or just hit (n) to avoid installing anything in the script.
- Check the log file generated in the
logs
directory for any error messages. - If you encounter issues, try running the script with the
--dry-run
flag to see what steps might be failing. - Ensure you have a stable internet connection throughout the installation process.
Contributions are welcome! Please feel free to submit a Pull Request.
This script makes significant changes to your system. While it's designed to be safe, please review the script and understand the changes it will make to your system before running it. Always ensure you have backups of important data.
- Visual Studio Code - Popular code editor
- Discord - Communication app for communities
- Logi Options+ - Logitech device manager
- Caffeine - Prevent your Mac from going to sleep
- Figma - Collaborative interface design tool
- Grammarly - Writing assistant
- Obsidian - Knowledge base that works on local Markdown files
- Bitwarden - Open source password manager
- Firefox - Web browser
- iTerm2 - Terminal emulator for macOS
- Postman - API development environment
- Docker - Platform for building, sharing, and running containerized applications
- Tor-Browser - Secure browser for anonymous web browsing
- Go - Open source programming language
- Zsh Syntax Highlighting - Fish shell-like syntax highlighting for Zsh
- fd - Simple, fast and user-friendly alternative to find
- fzf - Command-line fuzzy finder
- bat - Cat clone with syntax highlighting and Git integration
- jq - Lightweight command-line JSON processor
- Powerlevel10k - Zsh theme
- pyenv - Python version management
- pyenv-virtualenv - pyenv plugin for virtualenv
- Tor - Anonymity network
- Docker Compose - Define and run multi-container Docker applications
- ctop - Top-like interface for container metrics
- lazydocker - Docker management terminal UI
- AWS CLI - Command-line interface for AWS
- GitHub CLI - GitHub's official command line tool
- pgcli - PostgreSQL CLI with autocompletion and syntax highlighting
- Glow - Markdown reader for the terminal
- ripgrep - Fast search tool
- bpytop - Resource monitor
- lazygit - Simple terminal UI for git commands
- spotify_player - Command-line Spotify player
- tmux - Terminal multiplexer
- tree - Directory listing as a tree
- Nmap - Network discovery and security auditing tool
- eza - Modern replacement for ls
- tldr - Simplified man pages
- Neovim - Hyperextensible Vim-based text editor
- tickrs - Real-time stock market ticker
- Terraform - Infrastructure as Code tool
- tarkah/tickrs - Tap for tickrs (Real-time stock market ticker)
- hashicorp/tap - HashiCorp formulae
- dbcli/tap - Database command-line tools
- Oh My Zsh - Framework for managing Zsh configuration
- Node Version Manager (NVM) - Version manager for Node.js
- Python - Programming language (installed via pyenv)
- OpenAI Python package - Python client library for the OpenAI API and ZSH_CODEX
- Homebrew Documentation
- Oh My Zsh Documentation
- Pyenv Documentation
- NVM Documentation
- Docker Documentation
For detailed usage instructions and configuration options, please refer to the official documentation of each tool or application.