Skip to content

benhinchley/dotfiles

Repository files navigation

dotfiles

Setting up a new machine

  1. xcode-select --install
  2. xcodebuild -runFirstLaunch
  3. sh -c "$(curl -fsLS https://chezmoi.io/get)" -- -b $HOME/.local/bin
  4. ./.local/bin/chezmoi init --apply https://github.com/benhinchley/dotfiles.git

Setting fish as default shell

  1. echo "$(which fish)" | sudo tee -a /etc/shells
  2. chsh -s $(which fish)
  3. Restart the machine (sudo reboot)