From d89d8904d628fff1a4f73d51d0d1fb90089f537f Mon Sep 17 00:00:00 2001 From: icy-comet <50461557+icy-comet@users.noreply.github.com> Date: Mon, 28 Feb 2022 00:23:05 +0530 Subject: [PATCH] docs(faq): remove separate PS profile paths --- docs/docs/faq.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/docs/faq.mdx b/docs/docs/faq.mdx index aecb4417..1377e21d 100644 --- a/docs/docs/faq.mdx +++ b/docs/docs/faq.mdx @@ -143,7 +143,7 @@ conda config --set changeps1 False Virtual environments created with `venv` add the active environment's name to the prompt automatically. To disable this behaviour, set `VIRTUAL_ENV_DISABLE_PROMPT` environment variable to `1` on your system. Example files: -Note: Tilde (~) in paths refers to your user's home directory. +Note: Tilde (~) in paths refers to your user's home directory. ```powershell -# ~\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 (PowerShell v5.1 & below) -# ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 (PowerShell 7+) +# Your PowerShell $PROFILE $env:VIRTUAL_ENV_DISABLE_PROMPT=1 ```