cfg/aa000-0/zsh/.zprofile

20 lines
310 B
Plaintext
Raw Normal View History

# Inferencium
# ZSH - Profile
# Copyright 2023 Jake Winters
# SPDX-License-Identifier: BSD-3-Clause
# Version: 2.0.0.5
# 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