mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
31 lines
888 B
TOML
31 lines
888 B
TOML
# Get editor completions based on the config schema
|
||
"$schema" = 'https://starship.rs/config-schema.json'
|
||
|
||
# Inserts a blank line between shell prompts
|
||
add_newline = true
|
||
|
||
# Replace the '❯' symbol in the prompt with '➜'
|
||
[character]
|
||
success_symbol = '[➜](bold green)'
|
||
error_symbol = '[➜](bold red)'
|
||
|
||
# Disable the package module, hiding it from the prompt completely
|
||
[package]
|
||
disabled = true
|
||
|
||
# increase command timeout from default 500 milliseconds
|
||
command_timeout = 1500
|
||
|
||
[git_status]
|
||
conflicted = "⚔️ "
|
||
ahead = "🏎️ 💨 ×${count} "
|
||
behind = "🐢 ×${count} "
|
||
diverged = "🔱 🏎️ 💨 ×${ahead_count} 🐢 ×${behind_count} "
|
||
untracked = "🛤️ ×${count} "
|
||
stashed = "📦 "
|
||
modified = "📝 ×${count} "
|
||
staged = "🗃️ ×${count} "
|
||
renamed = "📛 ×${count} "
|
||
deleted = "🗑️ ×${count} "
|
||
style = "bright-white"
|
||
format = "$all_status$ahead_behind"
|