13 lines
232 B
Bash
13 lines
232 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
if [ -d $XDG_CONFIG_HOME/shell/login.d ]; then
|
|
for file in $XDG_CONFIG_HOME/shell/login.d/*.sh; do
|
|
source $file
|
|
done
|
|
fi
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|