From 81d9a47ece7846d3ea81da585653840149cafdcc Mon Sep 17 00:00:00 2001 From: Shawn Anderson Date: Mon, 28 Sep 2020 12:13:17 -0700 Subject: [PATCH] Update virtual environment prompt rendering to have parenthesis. I might add the python logo now that I think about it. --- dotfiles/.local/share/omf/themes/serious/fish_prompt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.local/share/omf/themes/serious/fish_prompt.fish b/dotfiles/.local/share/omf/themes/serious/fish_prompt.fish index b8604fd..3d2ad6f 100644 --- a/dotfiles/.local/share/omf/themes/serious/fish_prompt.fish +++ b/dotfiles/.local/share/omf/themes/serious/fish_prompt.fish @@ -142,7 +142,7 @@ function prompt_virtual_env -d "Display Python or Nix virtual environment" if test "$VIRTUAL_ENV" set py_env (basename $VIRTUAL_ENV) - set envs $envs "py[$py_env]" + set envs $envs "($py_env)" end if test "$IN_NIX_SHELL"