This is Ray Johnson's dotfiles repo.
- Brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" eval "$(/opt/homebrew/bin/brew shellenv)"- chezmoi
Ok - let's download and install my dotfiles!
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply rayjlinden- brew bundle Now we can install everthing else from brew which I have saved as a brew bundle.
brew bundle install --file .Brewfile- chsh
My dotfiles generally assume bash. However, the default for mac is not zsh. Lets switch it to a newer version of bash.
echo "/opt/homebrew/bin/bash" | sudo tee -a /etc/shells
chsh -s /opt/homebrew/bin/bashThe following will update the Brewfile:
brew bundle dump --force --file .Brewfile
chezmoi re-add .Brewfile