Skip to content

Instantly share code, notes, and snippets.

@charterchap
Created January 20, 2023 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charterchap/a2c73efbffda9c19a2fc6ed86ff04e74 to your computer and use it in GitHub Desktop.
Save charterchap/a2c73efbffda9c19a2fc6ed86ff04e74 to your computer and use it in GitHub Desktop.
starship
# ~/.config/starship.toml
# format = "$username$all$directory$character"
# [┌──$username─────────────────](bold green)
format = """
[\ue0b6$env_var\ue0b0](bold #039dfc)
[$python](bold green)[$username](bold green)$git_branch $git_status $character"""
[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"
error_symbol = "[✗](bold red)" # The "success_symbol" segment is being set to "➜" with the color "bold green"
[env_var.PWD]
format="[$env_value](bold bg:#039dfc)"
[username]
style_user = "white bold"
style_root = "black bold"
format = "[$user]($style): "
disabled = false
show_always = false
[git_branch]
format="[$symbol$branch(:$remote_branch)]($style) "
[python]
symbol = "🐍 "
pyenv_version_name = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment