mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2025-02-02 05:41:10 -08:00
docs(faq): how to stop conda from hijacking the prompt
This commit is contained in:
parent
6a17f22e82
commit
7197d58080
|
@ -123,12 +123,21 @@ https://ohmyposh.dev/docs/faq#powershell-running-in-constrainedlanguage-mode
|
||||||
When running PowerShell in ConstrainedLanguage mode, we can't set the console to UTF-8. This will cause the prompt to be rendered incorrectly.
|
When running PowerShell in ConstrainedLanguage mode, we can't set the console to UTF-8. This will cause the prompt to be rendered incorrectly.
|
||||||
There's a few [options][utf-8] to set the console to UTF-8 from an OS perspective on Windows, other systems shouldn't be impacted.
|
There's a few [options][utf-8] to set the console to UTF-8 from an OS perspective on Windows, other systems shouldn't be impacted.
|
||||||
|
|
||||||
To remove the message after manual configuration, you can add the following to your `$PROFILE` before importing oh-my-posh:
|
To remove the message after manual configuration, you can add the following to your `$PROFILE` before importing Oh My Posh:
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
$env:POSH_CONSTRAINED_LANGUAGE = 1
|
$env:POSH_CONSTRAINED_LANGUAGE = 1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Conda: environment name displayed in front of the prompt
|
||||||
|
|
||||||
|
Conda will automatically prepend the prompt with the name of the environment you're in.
|
||||||
|
To solely rely on Oh My Posh to set the prompt, you can configure the follwing setting to hide it:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
conda config --set changeps1 False
|
||||||
|
```
|
||||||
|
|
||||||
[new-issue]: https://github.com/JanDeDobbeleer/oh-my-posh/issues/new
|
[new-issue]: https://github.com/JanDeDobbeleer/oh-my-posh/issues/new
|
||||||
[latest]: https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest
|
[latest]: https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest
|
||||||
[wt-glyph]: https://github.com/microsoft/terminal/issues/3546
|
[wt-glyph]: https://github.com/microsoft/terminal/issues/3546
|
||||||
|
|
Loading…
Reference in a new issue