46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
# ╔══════════════════════════════════════════════════════════════════╗
|
|
# ║ arch-dev :: starship-mobile.toml ║
|
|
# ║ Single line · no icons · 256-color · Termius-safe ║
|
|
# ╚══════════════════════════════════════════════════════════════════╝
|
|
|
|
format = "$directory$git_branch$git_status$python $character"
|
|
right_format = "$cmd_duration"
|
|
|
|
[directory]
|
|
style = "bold fg:173"
|
|
truncation_length = 3
|
|
truncate_to_repo = true
|
|
read_only = "[ro]"
|
|
format = "[$path]($style)[$read_only](fg:167) "
|
|
|
|
[git_branch]
|
|
symbol = ""
|
|
style = "fg:106"
|
|
format = "[$symbol$branch]($style) "
|
|
|
|
[git_status]
|
|
style = "fg:167"
|
|
conflicted = "!"
|
|
ahead = "+${count}"
|
|
behind = "-${count}"
|
|
modified = "*"
|
|
untracked = "?"
|
|
staged = "+"
|
|
format = "([$all_status$ahead_behind]($style)) "
|
|
|
|
[python]
|
|
symbol = "py:"
|
|
style = "fg:66"
|
|
format = "[$symbol$version]($style) "
|
|
detect_files = ["*.py", "requirements.txt", "pyproject.toml"]
|
|
|
|
[cmd_duration]
|
|
min_time = 3000
|
|
style = "fg:242"
|
|
format = "[$duration]($style)"
|
|
|
|
[character]
|
|
success_symbol = "[>](bold fg:106)"
|
|
error_symbol = "[>](bold fg:167)"
|
|
vimcmd_symbol = "[<](bold fg:139)"
|