dotties/.profile

25 lines
399 B
Text
Raw Normal View History

2024-01-06 05:35:55 -06:00
for af in "$HOME/.aliases"/*; do
. "$af"
done
2024-05-31 22:36:34 -05:00
[ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env"
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`