Last active
March 9, 2022 06:00
-
-
Save gjuoun/159cdfbad7c4d5c764cdb629d21e8f69 to your computer and use it in GitHub Desktop.
starship prompt config
This file contains 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
# ~/.config/starship.toml | |
[time] | |
disabled = true | |
format = "[$time]($style)" | |
[aws] | |
format = ' [$symbol($profile)(\($region\))($duration)]($style)' | |
[deno] | |
format = ' [$symbol($version)]($style)' | |
[docker_context] | |
format = ' [$symbol$context]($style)' | |
[git_status] | |
format = '([$all_status$ahead_behind]($style))' | |
[nodejs] | |
format = ' [$symbol($version)]($style)' | |
symbol = "🟢 " | |
[git_branch] | |
format = ' [$symbol$branch]($style)' | |
symbol = "🌱 " | |
[cmd_duration] | |
format = ' \[[$duration]($style)\]' | |
min_time = 0 | |
show_milliseconds = true | |
# [env_var.S3REGION] | |
# format = ' [$symbol$env_value]($style)' | |
# style = "bold red" | |
# symbol = "🪣 " | |
# variable = "S3REGION" | |
#! text version | |
# [character] | |
# error_symbol = "[x](bold red)" | |
# success_symbol = "[>](bold green)" | |
# vicmd_symbol = "[<](bold green)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment