I am trying to run a Python file in debug mode, and I get an error because the Powershell integrated terminal it starts is bare. To get it to work, I want it to use the following profile which initializes the Anaconda env first.
"terminal.integrated.profiles.windows": {
"PowerShell -conda": {
"source": "PowerShell",
"args": ["-ExecutionPolicy", "ByPass", "-NoExit", "-Command", "& 'C:/Users/Marko/anaconda3/shell/condabin/conda-hook.ps1' ; conda activate 'C:/Users/Marko/anaconda3'"]
}
},
"terminal.integrated.defaultProfile.windows": "PowerShell -conda"
What should I do to make that happen?

C:/Users/Marko/anaconda3/shell/condabin/conda-hook.ps1and thenconda activate 'C:/Users/Marko/anaconda3'by hand in the debug terminal.