Last active
October 15, 2025 14:37
-
-
Save thojkooi/bbf1712c757470897d4d4fe89d472777 to your computer and use it in GitHub Desktop.
startship.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
| # 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 | |
| format = '$kubernetes$custom$all' | |
| # Replace the '❯' symbol in the prompt with '➜' | |
| # [character] # The name of the module we are configuring is 'character' | |
| # success_symbol = '[➜](bold green)' # The 'success_symbol' segment is being set to '➜' with the color 'bold green' | |
| # Disable the package module, hiding it from the prompt completely | |
| [package] | |
| disabled = true | |
| [kubernetes] | |
| format = '\(⎈ |[$context](red):[$namespace](bold blue)\) ' | |
| disabled = false | |
| [custom.tcloud_context] | |
| command = 'tcloud context current' | |
| format = '\([$symbol($output)]($style)\) ' | |
| style = 'dimmed' | |
| when = 'tcloud version' | |
| [git_branch] | |
| disabled = true | |
| [git_state] | |
| disabled = true | |
| [git_commit] | |
| disabled = true | |
| [git_status] | |
| disabled = true | |
| [nodejs] | |
| disabled = true | |
| [aws] | |
| disabled = false | |
| [docker_context] | |
| disabled = true | |
| [golang] | |
| symbol = '' | |
| format = '\([$symbol($version)]($style)\)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment