-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It is overriding my terminal settings #4
Comments
This issue can be resolved in one of the following ways:
Note: Profiles named |
This also overrides |
To address this, I have updated the extension to check if the ZDOTDIR environment variable is already set. Built-in .zshrc if [ -r ~/.zshrc ]; then
JAVA_HOME_BACKUP=$JAVA_HOME
source ~/.zshrc
if [ -n "$JAVA_HOME_BACKUP" ]; then
export JAVA_HOME=$JAVA_HOME_BACKUP
fi
fi
export PATH="$JAVA_HOME/bin:$AUTO_CONFIG_PATH:$PATH" |
It is overriding my terminal settings without ask for
The text was updated successfully, but these errors were encountered: