@@ -31,20 +31,20 @@ Some users find the descriptive prompt to be too noisy.
3131To * opt-out* of some of the prompt modules, you can set any of the following environment
3232` env ` variables to a * truthy* value * (either ` 1 ` or ` true ` )* :
3333
34- - ** ` WS_PROMPT_DISABLE_DOCKER ` :** Disable the ` docker ` module of the terminal prompt.
35- - ** ` WS_PROMPT_DISABLE_HOSTNAME ` :** Disable the ` hostname ` module of the terminal prompt.
36- - ** ` WS_PROMPT_DISABLE_KUBERNETES ` :** Disable the ` kubernetes ` module of the terminal prompt.
37- - ** ` WS_PROMPT_DISABLE_NODEJS ` :** Disable the ` nodejs ` module of the terminal prompt.
38- - ** ` WS_PROMPT_DISABLE_PYTHON ` :** Disable the ` python ` module of the terminal prompt.
39- - ** ` WS_PROMPT_DISABLE_USER ` :** Disable the user module of the terminal prompt.
34+ - ** ` WS_TERMINAL_PROMPT_HIDE_DOCKER_CONTEXT ` :** Disable the ` docker ` module of the terminal prompt.
35+ - ** ` WS_TERMINAL_PROMPT_HIDE_HOSTNAME ` :** Disable the ` hostname ` module of the terminal prompt.
36+ - ** ` WS_TERMINAL_PROMPT_HIDE_KUBERNETES_CONTEXT ` :** Disable the ` kubernetes ` module of the terminal prompt.
37+ - ** ` WS_TERMINAL_PROMPT_HIDE_NODEJS_VERSION ` :** Disable the ` nodejs ` module of the terminal prompt.
38+ - ** ` WS_TERMINAL_PROMPT_HIDE_PYTHON_VERSION ` :** Disable the ` python ` module of the terminal prompt.
39+ - ** ` WS_TERMINAL_PROMPT_HIDE_USER ` :** Disable the user module of the terminal prompt.
4040
4141For example, to disable the Docker and Python modules, you could add the following lines
4242to your deployment:
4343
4444``` sh{2,3}
4545docker run \
46- -e WS_PROMPT_DISABLE_DOCKER =1 \
47- -e WS_PROMPT_DISABLE_PYTHON =1 \
46+ -e WS_TERMINAL_PROMPT_HIDE_DOCKER_CONTEXT =1 \
47+ -e WS_TERMINAL_PROMPT_HIDE_PYTHON_VERSION =1 \
4848 ghcr.io/kloudkit/workspace:latest
4949```
5050
@@ -71,7 +71,7 @@ Tools and programming languages within the *workspace* that have corresponding
7171To modify the default set of plugins, adjust the ` env ` variables listed below:
7272
7373- ** ` WS_ZSH_PLUGINS ` :** Specifies the ` zsh ` plugins to be enabled in each session.
74- - ** ` WS_ZSH_EXTRA_PLUGINS ` :** Adds additional ` zsh ` plugins to the existing defaults.
74+ - ** ` WS_ZSH_ADDITIONAL_PLUGINS ` :** Adds additional ` zsh ` plugins to the existing defaults.
7575
7676::: code-group
7777
@@ -83,7 +83,7 @@ docker run \
8383
8484``` sh{2} [Append]
8585docker run \
86- -e WS_ZSH_EXTRA_PLUGINS ="php" \
86+ -e WS_ZSH_ADDITIONAL_PLUGINS ="php" \
8787 ghcr.io/kloudkit/workspace:latest
8888```
8989
0 commit comments