From cde9a8404be5c2a89f37bfb98204bcde7e440935 Mon Sep 17 00:00:00 2001 From: Aniket Teredesai <50461557+icy-comet@users.noreply.github.com> Date: Fri, 24 Dec 2021 17:08:28 +0530 Subject: [PATCH] docs(faq): add missing period and simplify language --- docs/docs/faq.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docs/faq.mdx b/docs/docs/faq.mdx index 50da4fbc..784525f8 100644 --- a/docs/docs/faq.mdx +++ b/docs/docs/faq.mdx @@ -138,11 +138,11 @@ To solely rely on Oh My Posh to set the prompt, you can configure the follwing s conda config --set changeps1 False ``` -### Python venv: Prompt is changed to display the environment name -Upon activation, virtual environments created with `venv` change the prompt to add the activated environment's name. -To disable this behaviour, set `VIRTUAL_ENV_DISABLE_PROMPT` environment variable to `1` on your system. Example commands to run, with probable file locations you'll have to put them in for auto-loading: +### Python venv: Prompt changes on activating virtual environment +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 here refers to your user's home directory. +Note: Tilde (~) in paths refers to your user's home directory. ```powershell -# powershell - ~/Documents/WindowsPowerShell/profile.ps1 +# ~/Documents/WindowsPowerShell/profile.ps1 $env:VIRTUAL_ENV_DISABLE_PROMPT=1 ``` @@ -164,7 +164,7 @@ $env:VIRTUAL_ENV_DISABLE_PROMPT=1 ```fish -#fish - ~/.config/fish/config.fish +# ~/.config/fish/config.fish set -x VIRTUAL_ENV_DISABLE_PROMPT 1 ``` @@ -172,7 +172,7 @@ set -x VIRTUAL_ENV_DISABLE_PROMPT 1 ```bash -# bash, zsh - ~/bashrc or ~/.zprofile ~/.zshrc +# ~/.bashrc (bash) or ~/.zprofile or ~/.zshrc (zsh) export VIRTUAL_ENV_DISABLE_PROMPT=1 ```