2020-01-08 19:40:53 +00:00
|
|
|
#!/bin/zsh
|
|
|
|
# Default zsh environment
|
|
|
|
RD_PATH="$HOME/RentDynamics"
|
|
|
|
SCHOOL_DIR="$HOME/School"
|
|
|
|
DOTWRYN="$HOME/.wryn"
|
|
|
|
|
2020-11-04 21:14:19 +00:00
|
|
|
# ordered from least-preferred to most-preferred
|
|
|
|
PREFERRED_EDITOR=(vi vim)
|
|
|
|
|
2020-01-08 19:40:53 +00:00
|
|
|
LOCAL_OVERRIDES="$HOME/.config/wryn/env.zsh"
|
|
|
|
[ -f "$LOCAL_OVERRIDES" ] \
|
|
|
|
&& source "$LOCAL_OVERRIDES" \
|
|
|
|
|| {
|
|
|
|
touch $LOCAL_OVERRIDES \
|
|
|
|
&& echo '#!/bin/zsh' > $LOCAL_OVERRIDES \
|
|
|
|
&& echo '# Local overrides of .wryn environment variables '>> $LOCAL_OVERRIDES
|
|
|
|
}
|