21 lines
552 B
TOML
21 lines
552 B
TOML
# Inserts a blank line between shell prompts
|
||
add_newline = false
|
||
|
||
[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"
|
||
|
||
[directory]
|
||
truncation_length = 5
|
||
truncation_symbol = "…/"
|
||
truncate_to_repo = false
|