starship-prompt/starship.toml

63 lines
1.1 KiB
TOML
Raw Normal View History

2020-08-01 09:40:26 +00:00
prompt_order = [
2020-09-17 09:43:21 +00:00
"custom.separator",
2020-08-01 09:40:26 +00:00
"line_break",
"username",
"hostname",
"line_break",
"directory",
"git_branch",
"git_commit",
"git_state",
"git_status",
"line_break",
2020-09-17 09:43:21 +00:00
"nodejs",
"python",
"php",
2020-08-01 09:40:26 +00:00
"line_break",
"jobs",
"battery",
"memory_usage",
"character",
]
[character]
use_symbol_for_status = true
2020-09-17 10:01:19 +00:00
style_success = ""
2020-08-01 09:40:26 +00:00
style_failure = "bold bright-red"
[directory]
truncate_to_repo = false
truncation_length = 12
style = "white"
2020-09-17 10:01:19 +00:00
[git_branch]
style="bold italic bright-yellow"
2020-08-01 09:40:26 +00:00
[python]
symbol = "Python: "
2020-09-17 10:01:19 +00:00
style = "bold italic dimmed blue"
2020-08-01 09:40:26 +00:00
[php]
symbol = "PHP: "
2020-09-17 10:01:19 +00:00
style = "bold italic dimmed blue"
2020-08-01 09:40:26 +00:00
[nodejs]
symbol = "Node: "
2020-09-17 10:01:19 +00:00
style = "bold italic dimmed cyan"
2020-08-01 09:40:26 +00:00
[memory_usage]
disabled = false
2020-08-07 09:03:05 +00:00
show_percentage = true
2020-08-01 09:40:26 +00:00
show_swap = false
2020-08-07 09:03:05 +00:00
threshold = 66
symbol = "MEM: "
separator = "/"
2020-08-01 09:40:26 +00:00
style = "bold bright-red"
2020-08-07 09:03:05 +00:00
2020-08-01 09:40:26 +00:00
[custom.separator]
disabled = false
command = 'date +"%H:%M:%S ――――――――――――――――――――――――――――――――"'
when = "true"
2020-09-17 10:01:19 +00:00
style = "bold fg:white"