# Avery's dotfiles My dotfiles, organized using chezmoi. # Installation 1. Install Homebrew and chezmoi ```fish /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv) brew install chezmoi ``` 2. Create the chezmoi config at `~/.config/chezmoi/chezmoi.toml` ```toml [data] machineType = "personal|work" [data.git] name = "" email = "" sshSigningKeyOpId = "" [data.restic.chert] baseOpId = "" [data.restic.pulsar] baseOpId = "" [data.restic.slate] baseOpId = "" ``` 3. Initialize the repository ```sh chezmoi init https://tangled.sh/@bladee.bsky.social/dotfiles fish -c "chezmoi apply" fish -c "chezmoi apply" ```