Skip to content

Instantly share code, notes, and snippets.

@steezeburger
Last active February 11, 2024 01:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steezeburger/9ffdb8382a45a5e7b9f11c223ac12bfe to your computer and use it in GitHub Desktop.
Save steezeburger/9ffdb8382a45a5e7b9f11c223ac12bfe to your computer and use it in GitHub Desktop.
my starship config. inspired by the hit major motion picture The Matrix
format = """
[░▒▓](#00FF00)\
$username\
[@](bg:#0F0F0F fg:#00FF00)\
$hostname\
$directory\
[\ueb2c](fg:#0F0F0F bg:#003300)\
$git_branch\
$git_status\
[\ueb2c](fg:#0F0F0F bg:#003300)\
$nodejs\
$python\
$rust\
$golang\
$php\
[\ueb2c ](fg:#0F0F0F bg:#003300)\
$time\
$character"""
add_newline = false
[username]
show_always = true
format = "[$user](fg:#00FF00 bg:#000000)"
[hostname]
ssh_only = false
format = "[$hostname]($style)"
style = "fg:#00FF00 bg:#000000"
[character]
success_symbol = '[ ](fg:#00FF00 bg:#000000) '
error_symbol = '[✗](bold red) '
[directory]
style = "fg:#00FF00 bg:#003300"
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"
[directory.substitutions]
"Documents" = "󰈙 "
"Downloads" = " "
"Music" = " "
"Pictures" = " "
[git_branch]
symbol = ""
format = '[ $symbol $branch ](fg:#00FF00 bg:#003300)'
[git_status]
format = '[($all_status$ahead_behind )](fg:#00FF00 bg:#003300)'
[nodejs]
symbol = ""
format = '[ $symbol ($version) ](fg:#00FF00 bg:#003300)'
[python]
symbol = "󱔎"
format = '[ $symbol ($version) ](fg:#00FF00 bg:#003300)'
[rust]
symbol = ""
format = '[ $symbol ($version) ](fg:#00FF00 bg:#003300)'
[golang]
symbol = ""
format = '[ $symbol ($version) ](fg:#00FF00 bg:#003300)'
[php]
symbol = ""
format = '[ $symbol ($version) ](fg:#00FF00 bg:#003300)'
[time]
disabled = false
use_12hr = true
time_format = "%I:%M%P" # Hour:Minute Format
format = '[  $time ](fg:#00FF00 bg:#000000)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment