Skip to content

Instantly share code, notes, and snippets.

@llagerlof
Forked from ryo-ARAKI/starship.toml
Created August 26, 2022 12:57
Show Gist options
  • Save llagerlof/1ab182e2ef132fa2240c97f16dab0d42 to your computer and use it in GitHub Desktop.
Save llagerlof/1ab182e2ef132fa2240c97f16dab0d42 to your computer and use it in GitHub Desktop.

Revisions

  1. ARAKI Ryo revised this gist Jul 29, 2022. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -84,3 +84,6 @@ disabled = false
    [username]
    style_user = "bold dimmed blue"
    show_always = false

    [nodejs]
    format = "via [🤖 $version](bold green) "
  2. ARAKI Ryo revised this gist Apr 23, 2021. 1 changed file with 1 addition and 3 deletions.
    4 changes: 1 addition & 3 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -30,7 +30,7 @@ commit_hash_length = 8
    style = "bold white"

    [git_state]
    progress_divider = " of "
    format = '[\($state( $progress_current of $progress_total)\)]($style) '

    [git_status]
    conflicted = "⚔️ "
    @@ -60,8 +60,6 @@ style = "bold green"

    [memory_usage]
    format = "$symbol[${ram}( | ${swap})]($style) "
    show_percentage = true
    show_swap = true
    threshold = 70
    style = "bold dimmed white"
    disabled = false
  3. ARAKI Ryo revised this gist Jan 5, 2021. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -73,6 +73,10 @@ disabled = true
    format = "[$symbol$version]($style) "
    style = "bold green"

    [rust]
    format = "[$symbol$version]($style) "
    style = "bold green"

    [time]
    time_format = "%T"
    format = "🕙 $time($style) "
  4. ARAKI Ryo revised this gist Jan 5, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -62,7 +62,7 @@ style = "bold green"
    format = "$symbol[${ram}( | ${swap})]($style) "
    show_percentage = true
    show_swap = true
    threshold = 50
    threshold = 70
    style = "bold dimmed white"
    disabled = false

  5. ARAKI Ryo revised this gist Sep 30, 2020. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -18,7 +18,7 @@ format = " took [$duration]($style)"

    [directory]
    truncation_length = 5
    format = "[$path]($style)[$lock_symbol]($lock_style)"
    format = "[$path]($style)[$lock_symbol]($lock_style) "

    [git_branch]
    format = " [$symbol$branch]($style) "
    @@ -59,6 +59,7 @@ symbol = "ஃ "
    style = "bold green"

    [memory_usage]
    format = "$symbol[${ram}( | ${swap})]($style) "
    show_percentage = true
    show_swap = true
    threshold = 50
  6. ARAKI Ryo revised this gist Sep 30, 2020. 1 changed file with 20 additions and 17 deletions.
    37 changes: 20 additions & 17 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -10,41 +10,39 @@ threshold = 30
    style = "bold red"

    [character]
    use_symbol_for_status = true # Show "✖" when the command faild
    success_symbol = "[❯](bold green) "
    error_symbol = "[✖](bold red) "
    vicmd_symbol = "[❮](bold green)"

    [cmd_duration]
    min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec)
    format = " took [$duration]($style)"

    [directory]
    truncation_length = 5
    format = "[$path]($style)[$lock_symbol]($lock_style)"

    [git_branch]
    format = " [$symbol$branch]($style) "
    symbol = "🍣 "
    style = "bold yellow"

    [git_commit]
    commit_hash_length = 8
    style = "bold white"

    [git_state]
    progress_divider = " of "

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎️ 💨 ${count}"
    behind = "🐢 ${count}"
    diverged = "🔱 🏎️ 💨 ${count} 🐢 ${count}"
    untracked = "🛤️ ×"
    untracked_count.enabled = true
    ahead = "🏎️ 💨 ×${count}"
    behind = "🐢 ×${count}"
    diverged = "🔱 🏎️ 💨 ×${ahead_count} 🐢 ×${behind_count}"
    untracked = "🛤️ ×${count}"
    stashed = "📦 "
    modified = "📝 ×"
    modified_count.enabled = true
    staged = "🗃️ ×"
    staged_count.enabled = true
    renamed = "📛 ×"
    renamed_count.enabled = true
    deleted = "🗑️ ×"
    deleted_count.enabled = true
    modified = "📝 ×${count}"
    staged = "🗃️ ×${count}"
    renamed = "📛 ×${count}"
    deleted = "🗑️ ×${count}"
    style = "bright-white"
    format = "$all_status$ahead_behind"

    @@ -56,6 +54,7 @@ style = "bold dimmed white"
    disabled = true

    [julia]
    format = "[$symbol$version]($style) "
    symbol = ""
    style = "bold green"

    @@ -69,9 +68,13 @@ disabled = false
    [package]
    disabled = true

    [python]
    format = "[$symbol$version]($style) "
    style = "bold green"

    [time]
    time_format = "%T"
    format = "🕙 $time($style)"
    format = "🕙 $time($style) "
    style = "bright-white"
    disabled = false

  7. ARAKI Ryo revised this gist Sep 30, 2020. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -11,6 +11,9 @@ style = "bold red"

    [character]
    use_symbol_for_status = true # Show "✖" when the command faild
    success_symbol = "[❯](bold green) "
    error_symbol = "[✖](bold red) "
    vicmd_symbol = "[❮](bold green)"

    [cmd_duration]
    format = " took [$duration]($style)"
  8. ARAKI Ryo revised this gist Sep 30, 2020. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -12,6 +12,9 @@ style = "bold red"
    [character]
    use_symbol_for_status = true # Show "✖" when the command faild

    [cmd_duration]
    format = " took [$duration]($style)"

    [directory]
    truncation_length = 5
    format = "[$path]($style)[$lock_symbol]($lock_style)"
  9. ARAKI Ryo revised this gist Sep 30, 2020. 1 changed file with 8 additions and 9 deletions.
    17 changes: 8 additions & 9 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -14,7 +14,7 @@ use_symbol_for_status = true # Show "✖" when the command faild

    [directory]
    truncation_length = 5
    prefix = ""
    format = "[$path]($style)[$lock_symbol]($lock_style)"

    [git_branch]
    symbol = "🍣 "
    @@ -25,9 +25,9 @@ progress_divider = " of "

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎️ 💨 "
    behind = "🐢 "
    diverged = "🔱 "
    ahead = "🏎️ 💨 ${count}"
    behind = "🐢 ${count}"
    diverged = "🔱 🏎️ 💨 ${count} 🐢 ${count}"
    untracked = "🛤️ ×"
    untracked_count.enabled = true
    stashed = "📦 "
    @@ -39,14 +39,12 @@ renamed = "📛 ×"
    renamed_count.enabled = true
    deleted = "🗑️ ×"
    deleted_count.enabled = true
    prefix = ""
    suffix = ""
    style = "bright-white"
    format = "$all_status$ahead_behind"

    [hostname]
    ssh_only = false
    prefix = "<"
    suffix = ">"
    format = "<[$hostname]($style)>"
    trim_at = "-"
    style = "bold dimmed white"
    disabled = true
    @@ -66,7 +64,8 @@ disabled = false
    disabled = true

    [time]
    format = "🕙 %T"
    time_format = "%T"
    format = "🕙 $time($style)"
    style = "bright-white"
    disabled = false

  10. ARAKI Ryo revised this gist Jun 10, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -30,7 +30,7 @@ behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤️ ×"
    untracked_count.enabled = true
    stashed = "📦 ×"
    stashed = "📦 "
    modified = "📝 ×"
    modified_count.enabled = true
    staged = "🗃️ ×"
  11. ARAKI Ryo revised this gist Jun 10, 2020. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -31,7 +31,6 @@ diverged = "🔱 "
    untracked = "🛤️ ×"
    untracked_count.enabled = true
    stashed = "📦 ×"
    stashed_count.enabled = true
    modified = "📝 ×"
    modified_count.enabled = true
    staged = "🗃️ ×"
  12. ARAKI Ryo revised this gist Jun 10, 2020. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,6 @@ prefix = ""
    symbol = "🍣 "
    style = "bold yellow"


    [git_state]
    progress_divider = " of "

  13. ARAKI Ryo revised this gist Jun 10, 2020. 1 changed file with 13 additions and 6 deletions.
    19 changes: 13 additions & 6 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -20,6 +20,7 @@ prefix = ""
    symbol = "🍣 "
    style = "bold yellow"


    [git_state]
    progress_divider = " of "

    @@ -28,12 +29,18 @@ conflicted = "⚔️ "
    ahead = "🏎️ 💨 "
    behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤️ "
    stashed = "📦 "
    modified = "📝 "
    staged = "🗃️ "
    renamed = "📛 "
    deleted = "🗑️ "
    untracked = "🛤️ ×"
    untracked_count.enabled = true
    stashed = "📦 ×"
    stashed_count.enabled = true
    modified = "📝 ×"
    modified_count.enabled = true
    staged = "🗃️ ×"
    staged_count.enabled = true
    renamed = "📛 ×"
    renamed_count.enabled = true
    deleted = "🗑️ ×"
    deleted_count.enabled = true
    prefix = ""
    suffix = ""
    style = "bright-white"
  14. ARAKI Ryo revised this gist Apr 7, 2020. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -46,6 +46,10 @@ trim_at = "-"
    style = "bold dimmed white"
    disabled = true

    [julia]
    symbol = ""
    style = "bold green"

    [memory_usage]
    show_percentage = true
    show_swap = true
  15. ARAKI Ryo revised this gist Feb 25, 2020. 1 changed file with 25 additions and 8 deletions.
    33 changes: 25 additions & 8 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -1,15 +1,28 @@
    # ~/.config/starship.toml

    [battery]
    full_symbol = "🔋"
    charging_symbol = "🔌"
    discharging_symbol = ""

    [[battery.display]]
    threshold = 30
    style = "bold red"

    [character]
    use_symbol_for_status = true # Show "✖" when the command faild

    [directory]
    truncation_length = 5
    prefix = ""

    [git_branch]
    symbol = "🍣 "
    style = "bold yellow"

    [git_state]
    progress_divider = " of "

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎️ 💨 "
    @@ -21,29 +34,33 @@ modified = "📝 "
    staged = "🗃️ "
    renamed = "📛 "
    deleted = "🗑️ "
    prefix = "with "
    prefix = ""
    suffix = ""
    style = "bright-white"

    [hostname]
    ssh_only = false
    prefix = ""
    suffix = ""
    prefix = "<"
    suffix = ">"
    trim_at = "-"
    style = "bold dimmed white"
    disabled = true

    [memory_usage]
    show_percentage = true
    show_swap = true
    threshold = 30
    style = "bold dimmed green"
    threshold = 50
    style = "bold dimmed white"
    disabled = false

    [package]
    disabled = true

    [time]
    disabled = false
    style = "bright-white"
    format = "🕙 %T"
    style = "bright-white"
    disabled = false

    [username]
    style_user = "bold dimmed blue"
    show_always = true
    show_always = false
  16. ARAKI Ryo revised this gist Feb 25, 2020. 1 changed file with 23 additions and 23 deletions.
    46 changes: 23 additions & 23 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -3,32 +3,9 @@
    [character]
    use_symbol_for_status = true # Show "✖" when the command faild

    [hostname]
    ssh_only = false
    prefix = ""
    suffix = ""
    style = "bold dimmed white"
    disabled = true

    [username]
    style_user = "bold dimmed blue"
    show_always = true

    [directory]
    truncation_length = 5

    [time]
    disabled = false
    style = "bright-white"
    format = "🕙 %T"

    [memory_usage]
    show_percentage = true
    show_swap = true
    threshold = 30
    style = "bold dimmed green"
    disabled = false

    [git_branch]
    symbol = "🍣 "
    style = "bold yellow"
    @@ -47,3 +24,26 @@ deleted = "🗑️ "
    prefix = "with "
    suffix = ""
    style = "bright-white"

    [hostname]
    ssh_only = false
    prefix = ""
    suffix = ""
    style = "bold dimmed white"
    disabled = true

    [memory_usage]
    show_percentage = true
    show_swap = true
    threshold = 30
    style = "bold dimmed green"
    disabled = false

    [time]
    disabled = false
    style = "bright-white"
    format = "🕙 %T"

    [username]
    style_user = "bold dimmed blue"
    show_always = true
  17. ARAKI Ryo revised this gist Oct 4, 2019. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -27,6 +27,7 @@ show_percentage = true
    show_swap = true
    threshold = 30
    style = "bold dimmed green"
    disabled = false

    [git_branch]
    symbol = "🍣 "
  18. ARAKI Ryo revised this gist Oct 4, 2019. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -22,6 +22,12 @@ disabled = false
    style = "bright-white"
    format = "🕙 %T"

    [memory_usage]
    show_percentage = true
    show_swap = true
    threshold = 30
    style = "bold dimmed green"

    [git_branch]
    symbol = "🍣 "
    style = "bold yellow"
    @@ -40,4 +46,3 @@ deleted = "🗑️ "
    prefix = "with "
    suffix = ""
    style = "bright-white"

  19. ARAKI Ryo revised this gist Oct 2, 2019. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -31,12 +31,13 @@ conflicted = "⚔️ "
    ahead = "🏎️ 💨 "
    behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤 "
    untracked = "🛤 "
    stashed = "📦 "
    modified = "📝 "
    staged = "🗃️ "
    renamed = "📛 "
    deleted = "🗑️ "
    prefix = "with "
    suffix = ""
    style = "bright-white"
    style = "bright-white"

  20. ARAKI Ryo revised this gist Sep 26, 2019. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -11,6 +11,7 @@ style = "bold dimmed white"
    disabled = true

    [username]
    style_user = "bold dimmed blue"
    show_always = true

    [directory]
  21. ARAKI Ryo revised this gist Sep 24, 2019. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,5 @@
    # ~/.config/starship.toml

    [character]
    use_symbol_for_status = true # Show "✖" when the command faild

  22. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -25,7 +25,7 @@ style = "bold yellow"

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎️💨 "
    ahead = "🏎️ 💨 "
    behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤 "
  23. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -25,15 +25,15 @@ style = "bold yellow"

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎💨 "
    ahead = "🏎💨 "
    behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤 "
    stashed = "📦 "
    modified = "📝 "
    staged = "🗃 "
    staged = "🗃 "
    renamed = "📛 "
    deleted = "🗑 "
    deleted = "🗑 "
    prefix = "with "
    suffix = ""
    style = "bright-white"
  24. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -20,7 +20,7 @@ style = "bright-white"
    format = "🕙 %T"

    [git_branch]
    symbol = "📌 "
    symbol = "🍣 "
    style = "bold yellow"

    [git_status]
  25. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 13 additions and 4 deletions.
    17 changes: 13 additions & 4 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -3,9 +3,10 @@ use_symbol_for_status = true # Show "✖" when the command faild

    [hostname]
    ssh_only = false
    prefix = ""
    suffix = ""
    disabled = false
    prefix = ""
    suffix = ""
    style = "bold dimmed white"
    disabled = true

    [username]
    show_always = true
    @@ -15,8 +16,13 @@ truncation_length = 5

    [time]
    disabled = false
    style = "bright-white"
    format = "🕙 %T"

    [git_branch]
    symbol = "📌 "
    style = "bold yellow"

    [git_status]
    conflicted = "⚔️ "
    ahead = "🏎💨 "
    @@ -27,4 +33,7 @@ stashed = "📦 "
    modified = "📝 "
    staged = "🗃 "
    renamed = "📛 "
    deleted = "🗑 "
    deleted = "🗑 "
    prefix = "with "
    suffix = ""
    style = "bright-white"
  26. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -7,6 +7,9 @@ prefix = "⟪ "
    suffix = ""
    disabled = false

    [username]
    show_always = true

    [directory]
    truncation_length = 5

  27. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,12 @@
    [character]
    use_symbol_for_status = true # Show "✖" when the command faild

    [hostname]
    ssh_only = false
    prefix = ""
    suffix = ""
    disabled = false

    [directory]
    truncation_length = 5

  28. ARAKI Ryo revised this gist Sep 23, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -6,7 +6,7 @@ truncation_length = 5

    [time]
    disabled = false
    format = "🕙[ %T ]"
    format = "🕙 %T"

    [git_status]
    conflicted = "⚔️ "
  29. ARAKI Ryo revised this gist Sep 22, 2019. 1 changed file with 10 additions and 10 deletions.
    20 changes: 10 additions & 10 deletions starship.toml
    Original file line number Diff line number Diff line change
    @@ -9,13 +9,13 @@ disabled = false
    format = "🕙[ %T ]"

    [git_status]
    conflicted = "⚔️"
    ahead = "🏎💨"
    behind = "🐢"
    diverged = "🔱"
    untracked = "🛤"
    stashed = "📦"
    modified = "📝"
    staged = "🗃"
    renamed = "📛"
    deleted = "🗑"
    conflicted = "⚔️ "
    ahead = "🏎💨 "
    behind = "🐢 "
    diverged = "🔱 "
    untracked = "🛤 "
    stashed = "📦 "
    modified = "📝 "
    staged = "🗃 "
    renamed = "📛 "
    deleted = "🗑 "
  30. ARAKI Ryo revised this gist Sep 22, 2019. 1 changed file with 13 additions and 1 deletion.
    14 changes: 13 additions & 1 deletion starship.toml
    Original file line number Diff line number Diff line change
    @@ -6,4 +6,16 @@ truncation_length = 5

    [time]
    disabled = false
    format = "🕙[ %T ]"
    format = "🕙[ %T ]"

    [git_status]
    conflicted = "⚔️"
    ahead = "🏎💨"
    behind = "🐢"
    diverged = "🔱"
    untracked = "🛤"
    stashed = "📦"
    modified = "📝"
    staged = "🗃"
    renamed = "📛"
    deleted = "🗑"