blob: 2d82f19e806fbbd2d99e40f00897fcb5f5b78da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ -f /etc/zshenv ]; then
ZSHENV="/etc/zshenv"
elif [ -d /etc/zsh ]; then
ZSHENV="/etc/zsh/zshenv"
else
ZSHENV="/etc/zshenv"
fi
if ! grep -q "ZDOTDIR" $ZSHENV 2>/dev/null; then
echo "export ZDOTDIR=\"\$HOME\"/.config/zsh" >> $ZSHENV
fi
|