From a6465f839f01b59cd4782b32b1921ccb5964eb3c Mon Sep 17 00:00:00 2001 From: John Pocock Date: Thu, 5 Mar 2020 20:41:43 +0000 Subject: [PATCH] Update themes/agnoster.zsh-theme Change conda prompt format to "conda:$conda_env" Co-Authored-By: Avraham Shukron --- themes/agnoster.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index 6d66f8c4c..501f19376 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -205,7 +205,7 @@ prompt_conda() { local conda_env="$CONDA_DEFAULT_ENV" if [[ -n $conda_env ]]; then if [[ -z $CONDA_PROMPT_MODIFIER ]]; then - prompt_segment blue black "($CONDA_DEFAULT_ENV)" + prompt_segment blue black "conda:$conda_env" fi fi }