# Skeleton .zshrc rendered by chezmoi. Copy to dot_zshrc.tmpl in your fork # and add your own exports / PATH / completions / aliases. # # The single critical line is the one that sources the encrypted secrets # file at the bottom — don't remove that, or your fleet's API tokens # won't load on shell start. # ───────── PATH ───────── export PATH="$HOME/.local/bin:$PATH" export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH" # ───────── Editor / pager ───────── export EDITOR="nvim" export PAGER="less" # ───────── Completions / shell tools (uncomment what you use) ───────── # [ -s "{{ .chezmoi.homeDir }}/.bun/_bun" ] && source "{{ .chezmoi.homeDir }}/.bun/_bun" # eval "$(starship init zsh)" # eval "$(zoxide init zsh)" # ───────── Aliases ───────── alias ll="ls -lah" alias g="git" # ───────── Fleet secrets (must come last so per-key exports above can be overridden) ───────── # Loaded from the age-encrypted file managed by chezmoi. [[ -f "${HOME}/.config/fleet-dotfiles/secrets.env" ]] && source "${HOME}/.config/fleet-dotfiles/secrets.env"