export PATH="$HOME/.local/share/mise/shims:$HOME/.local/bin:$PATH"
eval "$(starship init zsh)"

# Security tools (disable with JACKIN_DISABLE_TIRITH=1 / JACKIN_DISABLE_SHELLFIRM=1)
if [[ "${JACKIN_DISABLE_TIRITH:-0}" != "1" ]]; then
    eval "$(tirith init --shell zsh)"
else
    echo "[zshrc] tirith shell hook disabled (JACKIN_DISABLE_TIRITH=1)"
fi
if [[ "${JACKIN_DISABLE_SHELLFIRM:-0}" != "1" ]]; then
    eval "$(shellfirm init zsh)"
else
    echo "[zshrc] shellfirm shell hook disabled (JACKIN_DISABLE_SHELLFIRM=1)"
fi
