83 lines
1.7 KiB
TOML
83 lines
1.7 KiB
TOML
format = """
|
||
$username$hostname$directory$git_branch$git_state$git_status$cmd_duration$line_break\
|
||
$character"""
|
||
|
||
# Wait 10 milliseconds for starship to check files under the current directory.
|
||
scan_timeout = 10
|
||
|
||
# Disable the blank line at the start of the prompt
|
||
add_newline = true
|
||
|
||
# # Define custom colors
|
||
# [palettes.foo]
|
||
# # Overwrite existing color
|
||
# blue = '21'
|
||
# # Define new color
|
||
# mustard = '#af8700'
|
||
|
||
[directory]
|
||
style = "purple"
|
||
truncation_length = 3
|
||
format = ': [$path]($style)[$read_only]($read_only_style) '
|
||
truncation_symbol = ".../"
|
||
truncate_to_repo =true
|
||
|
||
[character]
|
||
success_symbol = '[❯](bold green)'
|
||
# success_symbol = '[➜](bold green)'
|
||
error_symbol = '[✗](bold purple) '
|
||
vimcmd_symbol = "[❮](green)"
|
||
|
||
[git_branch]
|
||
symbol = '🌱 '
|
||
# truncation_length = 4
|
||
truncation_symbol = ''
|
||
format = '[$symbol$branch]($style) '
|
||
|
||
[git_status]
|
||
conflicted = '🏳'
|
||
ahead = '🏎💨'
|
||
behind = '😰'
|
||
diverged = '😵'
|
||
up_to_date = '✓'
|
||
untracked = '🤷'
|
||
stashed = '📦'
|
||
modified = '📝'
|
||
staged = '[++\($count\)](green)'
|
||
renamed = '👅'
|
||
deleted = '🗑'
|
||
|
||
[git_state]
|
||
format = '[\($state( $progress_current of $progress_total)\)]($style) '
|
||
cherry_pick = '[🍒 PICKING](bold red)'
|
||
|
||
[cmd_duration]
|
||
min_time = 100
|
||
format = 'underwent [$duration](bold yellow)'
|
||
|
||
[os]
|
||
disabled = false
|
||
[username]
|
||
style_user = 'white bold'
|
||
style_root = 'black bold'
|
||
format = '[$user]($style) '
|
||
disabled = false
|
||
show_always = true
|
||
|
||
[hostname]
|
||
ssh_only = false
|
||
format = '@(bold blue) [$hostname](bold red) '
|
||
trim_at = '.ciena.com'
|
||
disabled = false
|
||
|
||
[status]
|
||
style = 'bg:blue'
|
||
symbol = '🔴 '
|
||
success_symbol = '🟢 SUCCESS'
|
||
format = '[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) '
|
||
map_symbol = true
|
||
disabled = false
|
||
|
||
[conda]
|
||
format = "[$symbol$environment]($style) "
|