Last active
October 3, 2023 09:21
-
-
Save AshminJayson/7664f8e3f9f18429dffd7d0e54a0c406 to your computer and use it in GitHub Desktop.
Starship config
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
# Get editor completions based on the config schema | |
"$schema" = 'https://starship.rs/config-schema.json' | |
add_newline = false | |
continuation_prompt = "-> " | |
# Disable the package module, hiding it from the prompt completely | |
[package] | |
disabled = false | |
[git_branch] | |
symbol = "๐ " | |
[character] | |
success_symbol = "[>](bold blue) " | |
error_symbol = "[โ](bold red) " | |
[aws] | |
disabled = true | |
[cmd_duration] | |
disabled = false | |
[directory] | |
use_os_path_sep = true | |
truncation_length = 10 | |
[hostname] | |
disabled = false | |
[nodejs] | |
symbol = "๐ฅ" | |
[battery] | |
full_symbol = "๐ " | |
charging_symbol = "โก๏ธ " | |
discharging_symbol = "โฌ " | |
disabled = false | |
[git_status] | |
conflicted = "๐ฉ" | |
ahead = "๐จ" | |
behind = "๐ฐ" | |
diverged = "๐ต" | |
untracked = "๐ค๏ธ" | |
stashed = "๐ฆ" | |
modified = "๐" | |
staged = '[++\($count\)](green)' | |
renamed = "๐ " | |
deleted = "๐ฎ" | |
[shell] | |
fish_indicator = "๐ฆ" | |
bash_indicator = "๐" | |
powershell_indicator = "๐ช" | |
disabled = true | |
[memory_usage] | |
disabled = true | |
threshold = -1 | |
symbol = ' ' | |
style = 'bold dimmed green' | |
[time] | |
disabled = false | |
format = '๐[\[ $time \]]($style) ' | |
time_format = '%T' | |
utc_time_offset = '-5' | |
time_range = '10:00:00-14:00:00' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment