cfg/aa-00-00/zsh/.zprofile
inference 5fcb29f4f5
feat(loc)!: switch system "aa000-0" name to "aa-00-00"
I have switched to a clearer naming convention for my systems. This
commit moves the directory and file locations to reflect that change.
2025-06-27 19:01:09 +00:00

20 lines
316 B
Bash

# Inferencium
# ZSH - Profile
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause-Clear
# Version: 1.1.1.4
# Start ssh-agent on login
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval $(ssh-agent -s)
fi
# Environmental variables
## User
if [[ -f $HOME/.zshenv-user ]]; then
. $HOME/.zshenv-user
fi