dotfiles/.zprofile

13 lines
270 B
Plaintext
Raw Normal View History

2019-03-17 18:44:29 +00:00
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
2019-11-17 22:02:17 +00:00
export PATH="$HOME/.cargo/bin:$PATH"