mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-06 02:51:32 +01:00
docs(python): improve docs for settings
This commit is contained in:
parent
dfc5949604
commit
60e0ce4bb1
1 changed files with 23 additions and 2 deletions
|
|
@ -41,7 +41,28 @@ virtual environments:
|
||||||
### Settings
|
### Settings
|
||||||
|
|
||||||
You can set these variables in your `.zshrc` file, before Oh My Zsh is sourced.
|
You can set these variables in your `.zshrc` file, before Oh My Zsh is sourced.
|
||||||
|
For example:
|
||||||
|
|
||||||
- `$PYTHON_VENV_NAME`: preferred name for virtual environments (default: `venv`).
|
```sh
|
||||||
|
PYTHON_VENV_NAME=".venv"
|
||||||
|
PYTHON_VENV_NAMES=($PYTHON_VENV_NAME venv)
|
||||||
|
...
|
||||||
|
plugins=(... python)
|
||||||
|
source "$ZSH/oh-my-zsh.sh"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## `$PYTHON_VENV_NAME`
|
||||||
|
|
||||||
|
**Default**: `venv`.
|
||||||
|
|
||||||
|
Preferred name for virtual environments, for example when creating via `mkv`.
|
||||||
|
|
||||||
|
## `$PYTHON_VENV_NAMES`
|
||||||
|
|
||||||
|
**Default**: `$PYTHON_VENV_NAME venv .venv`.
|
||||||
|
|
||||||
|
Array of virtual environment names to be checked, in order, by `vrun` and `auto_vrun`.
|
||||||
|
This means these functions will load the first existing virtual environment in this list.
|
||||||
|
Duplicate names are ignored.
|
||||||
|
|
||||||
- `$PYTHON_VENV_NAMES`: list of virtual environment names to be checked, in order, by `vrun` and `auto_vrun`.
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue