Marty Oehme
1ae92cfc2a
Removed automatic initializations of zsh functions. Fixed not calling correct folders for bash aliases, environment variables and profile settings.
26 lines
617 B
Bash
26 lines
617 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# ~/.bash_profile
|
|
#
|
|
# shellcheck disable=SC1090
|
|
|
|
# load global sh env vars
|
|
[ -f "$XDG_CONFIG_HOME/sh/env" ] && source "$XDG_CONFIG_HOME/sh/env"
|
|
if [ -d "$XDG_CONFIG_HOME/sh/env.d" ]; then
|
|
for _env in "$XDG_CONFIG_HOME/sh/env.d"/*.sh; do
|
|
. "$_env"
|
|
done
|
|
unset _env
|
|
fi
|
|
|
|
# load profile files vars
|
|
[ -f "$XDG_CONFIG_HOME/sh/profile" ] && source "$XDG_CONFIG_HOME/sh/profile"
|
|
if [ -d "$XDG_CONFIG_HOME/sh/profile.d" ]; then
|
|
for _profile in "$XDG_CONFIG_HOME/sh/profile.d"/*.sh; do
|
|
. "$_profile"
|
|
done
|
|
unset _profile
|
|
fi
|
|
|
|
# shellcheck disable=SC1090
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|