Anaconda: disable prompt change
Add:
changeps1: False
to your .condarc file.
http://conda.pydata.org/docs/config.html#change-command-prompt-changeps1
I've had a slightly different, but related problem: how to avoid the base env to be activated by default for every terminal window. Solution:
conda config --set auto_activate_base False
Note: this only works if you have run conda init first.
Run this on the terminal:
$ conda config --set changeps1 False
http://conda.pydata.org/docs/config.html#change-command-prompt-changeps1