Created
March 24, 2022 02:07
-
-
Save frankievalentine/6767ae6f09e804f8b5b475509acb5db7 to your computer and use it in GitHub Desktop.
.config for Starship
This file contains hidden or 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
# Inserts a blank line between shell prompts | |
add_newline = false | |
# Replace the "❯" symbol in the prompt with "➜" | |
[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 = "[➜](red)" | |
[directory] | |
[battery] | |
full_symbol = "🔋 " | |
charging_symbol = "⚡️ " | |
discharging_symbol = "💀 " | |
[docker_context] | |
format = "via [🐋 $context](blue bold)" | |
[git_branch] | |
symbol = " " | |
truncation_length = 4 | |
truncation_symbol = "" | |
style = "bright-black" | |
[git_commit] | |
commit_hash_length = 4 | |
tag_symbol = "🔖 " | |
[nodejs] | |
symbol = " " | |
format = "via [🤖 $version](bold green) " | |
# Disable the package module, hiding it from the prompt completely | |
[package] | |
disabled = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment