From 02d4a17ccfb309c018ae1c5f178ea7a2f1a2048c Mon Sep 17 00:00:00 2001 From: Shawn Anderson Date: Mon, 28 Sep 2020 12:17:55 -0700 Subject: [PATCH] Add snake to python virtualenv in prompt. --- 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 3d2ad6f..a24628a 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_env)" + set envs $envs "🐍$py_env" end if test "$IN_NIX_SHELL"