the pink domain name at the end is a partial reference to the email of the git config that's currently in use, because I have up to three separate git users to keep track of
Here's the custom starship command I made for that
```toml
[custom.git_email]
command = "echo $(git config user.email) | cut -d@ -f2"
symbol = "{insert the emoji of choice here} "
format='[$symbol($output )]($style)'
when = true
require_repo = true
style = "#eeb7bc bold"
```