Created
January 20, 2023 17:26
-
-
Save charterchap/a2c73efbffda9c19a2fc6ed86ff04e74 to your computer and use it in GitHub Desktop.
starship
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 | |
# 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