Install these apps first:
- Visual Studio Code
- Spotify
- Raycast
- Rectangle
- iTerm2
- Xcode
- Scroll Reverser
- Setapp
- Bartender
- CleanMyMac X
- CleanShot X
- iStat Menus
- NotchNook
- ...and anything else :)
- Run these two commands in your terminal to add Homebrew to your PATH:
(echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/rpalaguachi/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"brew install neovim chezmoi node bitwarden- Set any machine-specific data in the config file. By default it lives at
~/.config/chezmoi/chezmoi.toml.
# This toml file is NOT managed by chezmoi. Instead this
# file tells chezmoi what machine-specific data you wish to store.
[data]
email = "[email protected]"
machine = "personal_macbook"- If you already have an existing chezmoi environment, sync to Github remote in one line:
chezmoi init --apply $GITHUB_USERNAME- If you need to make edits to your dotfiles, use:
chezmoi edit <filename>- Once you're ready to push your changes to remote, use:
chezmoi git -- add
chezmoi git -- commit -m "Update dotfiles"- On any machine, you can pull and apply the latest updates with:
chezmoi update -vRead more about chezmoi's daily operations at chezmoi.io/user-guide/daily-operations