Created
May 19, 2026 20:54
-
-
Save adibhanna/8a65989a0ad9318d36cce43e177bfc7c to your computer and use it in GitHub Desktop.
starship.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Wait 11 milliseconds for starship to check files under the current directory. | |
| scan_timeout = 11 | |
| # Disable the blank line at the start of the prompt | |
| add_newline = false | |
| # Disable the package module, hiding it from the prompt completely | |
| [aws] | |
| disabled = true | |
| [line_break] | |
| disabled = false | |
| [directory] | |
| truncation_length = 4 | |
| read_only = " ο ½" | |
| [git_branch] | |
| symbol = "ο " | |
| [git_commit] | |
| commit_hash_length = 8 | |
| format = "on [$hash]($style) " | |
| tag_symbol = "π " | |
| [git_status] | |
| ahead = "β‘${count}" | |
| diverged = "ββ‘${ahead_count}β£${behind_count}" | |
| behind = "β£${count}" | |
| [git_state] | |
| format = '[\($state( $progress_current of $progress_total)\)]($style) ' | |
| cherry_pick = "[π PICKING](bold red)" | |
| [git_metrics] | |
| disabled = false | |
| added_style = 'bold blue' | |
| format = '[+$added]($added_style)/[-$deleted]($deleted_style) ' | |
| [hg_branch] | |
| symbol = "ο " | |
| [nodejs] | |
| format = "via [NodeJS $version](bold green) " | |
| [rust] | |
| format = "via [Rust $version](red bold) " | |
| symbol = "π¦ " | |
| [golang] | |
| format = "via [Go $version](red bold) " | |
| [php] | |
| format = "via [PHP $version](148 bold) " | |
| [lua] | |
| format = "via [Lua $version](bold blue) " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment