dotties/.profile

28 lines
490 B
Text
Raw Normal View History

if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
elif [ -d "$HOME/.cargo/bin" ]; then
PATH="$HOME/.cargo/bin:$PATH"
fi
2024-05-31 22:36:34 -05:00
2024-01-06 05:35:55 -06:00
if [ -d "$HOME/.profile.d" ]; then
for pd in "$HOME/.profile.d"/*; do
. "$pd"
done
fi
2024-05-22 14:39:42 -05:00
command -v uname >/dev/null &&
case $(uname) in
FreeBSD)
. "$HOME/.profile.freebsd"
;;
2024-07-25 06:16:25 -05:00
Linux)
. "$HOME/.profile.linux"
;;
2024-05-22 14:39:42 -05:00
esac \
;
2024-08-06 15:40:36 -05:00
export EDITOR=`which vim`
2025-01-22 02:55:13 -06:00
# Make GPG and Git signing behave!
export GPG_TTY=$(tty)