Last active
February 4, 2023 08:44
-
-
Save ThisIsntMyId/4a025d954d3665a434819600648cc977 to your computer and use it in GitHub Desktop.
starship config
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
format = '$all' | |
[username] | |
style_user = "green bold" | |
style_root = "red bold" | |
format = "[$user]($style) " | |
disabled = false | |
show_always = true | |
[hostname] | |
ssh_only = false | |
format = 'in [dp pc-home](bold yellow) ' | |
trim_at = "." | |
disabled = 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 = "[💥](bold red)" | |
# | |
# configure directory | |
[directory] | |
read_only = " " | |
truncation_length = 10 | |
truncate_to_repo = true # truncates directory to root folder if in github repo | |
style = "bold italic blue" | |
[cmd_duration] | |
min_time = 4 | |
show_milliseconds = false | |
show_notifications = true | |
disabled = false | |
style = "bold italic red" | |
[memory_usage] | |
disabled = false | |
symbol = " " | |
[time] | |
disabled = false | |
format = '🕙[ $time](bold fg:6) ' | |
time_format = '%D %r' | |
[git_commit] | |
disabled = false | |
[aws] | |
disabled = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment