12 lines
270 B
Bash
12 lines
270 B
Bash
export XDG_CONFIG_HOME="$HOME/.config"
|
|
|
|
# .zlogin
|
|
#
|
|
# load all files from .config/shell/login.d
|
|
if [ -d $XDG_CONFIG_HOME/shell/login.d ]; then
|
|
for file in $XDG_CONFIG_HOME/shell/login.d/*.sh; do
|
|
source $file
|
|
done
|
|
fi
|
|
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|