ببخشید شما راهی برای نمایش محیط مجازی پایتون در starship میشناسید؟
شما فق فایل کانفیگ رو بسازید و تنظیمش کنید
~/.config/starship.toml
من فقط بهش گفتم پایتون رو نمایش بده و اسم محیط مجازی رو نمایش میده
اینجا اسم محیط مجازی رو نشون میده(venv) :
┌───────────────────< smjt2000 in Programming/test/test
│ via 🐍 v3.10.2 (venv)
└─❯
اینم فایل کانفیگ منه:
format = """
[┌───────────────────<](bold green) $username$directory $cmd_duration
[│ ](bold green)$python$package
[└─$character](bold green)$git_branch$git_status"""
# Inserts a blank line between shell prompts
add_newline = true
# Replace the "❯" symbol in the prompt with "➜"
[character] # The name of the module we are configuring is "character"
success_symbol = "[❯](bold green)" # The "success_symbol" segment is being set to "➜" with the color "bold green"
error_symbol = "[✗](bold red)"
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
[cmd_duration]
show_notifications = true
min_time_to_notify = 10_000
[directory]
style = "black bold"
[username]
style_user = "blue bold"
show_always = true