1
0

fish config

This commit is contained in:
2024-05-07 11:50:00 +03:00
parent c663a3cf8a
commit 3852d0aa3e
4 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
function my_venv_prompt -d "Custom venv prompt part"
if set -q VIRTUAL_ENV
echo -n -s (set_color -b blue white) "(" (basename "$VIRTUAL_ENV") ")" (set_color normal) " "
end
end