diff --git a/configs/.zshrc b/configs/.zshrc index 644aa93..d0dd630 100644 --- a/configs/.zshrc +++ b/configs/.zshrc @@ -54,6 +54,11 @@ export SDKMAN_DIR="$HOME/.sdkman" export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" +if [ -d $HOME/.dotnet ]; then + export DOTNET_ROOT=$HOME/.dotnet; + export PATH=$PATH:$HOME/.dotnet; +fi + # The next line updates PATH for the Google Cloud SDK. if [ -f '/home/coder/downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/home/coder/downloads/google-cloud-sdk/path.zsh.inc'; fi