Dotfiles installation Steps to bootstrap a new Mac Install Apple's command line tools, which are prerequisites for Git and Homebrew. xcode-select --install Clone repo into root directory. git clone https://github.com/aleckshen/dotfiles.git Create symlinks in the home directory to the real files in the repo. ln -s ~/dotfiles/.zshrc ~/.zshrc ln -s ~/dotfiles/.gitconfig ~/.gitconfig ln -s ~/dotfiles/aerospace ~/.config/aerospace ln -s ~/dotfiles/wezterm ~/.config/wezterm ln -s ~/dotfiles/nvim ~/.config/nvim ln -s ~/dotfiles/tmux ~/.config/tmux Install Homebrew, followed by the software listed in the Brewfile. # Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # Pass in file Brewfile location brew bundle --file ~/dotfiles/Brewfile