dotfiles/home/.config/starship.toml

167 lines
3.3 KiB
TOML
Raw Permalink Normal View History

2024-05-04 23:43:39 +00:00
format = """
[](#47225e)\
$os\
$username\
2024-05-10 17:48:49 +00:00
[](bg:#ff0080 fg:#47225e)\
2024-05-04 23:43:39 +00:00
$directory\
2024-05-10 17:48:49 +00:00
[](fg:#ff0080 bg:#005353)\
2024-05-04 23:43:39 +00:00
$git_branch\
$git_status\
2024-05-10 17:48:49 +00:00
[](fg:#005353 bg:#00334e)\
2024-05-04 23:43:39 +00:00
$c\
$elixir\
$elm\
$golang\
$gradle\
$haskell\
$java\
$julia\
$nodejs\
$nim\
$rust\
$scala\
2024-05-10 17:52:02 +00:00
[](fg:#00334e bg:#ff0080)\
$docker_context\
[](fg:#ff0080 bg:#47225e)\
2024-05-05 21:22:19 +00:00
$status\
2024-05-04 23:43:39 +00:00
$time\
2024-05-10 17:48:49 +00:00
[](fg:#47225e)\
2024-05-10 16:42:58 +00:00
\r\n\
$shell\
2024-05-04 23:43:39 +00:00
"""
# Disable the blank line at the start of the prompt
# add_newline = false
# You can also replace your username with a neat symbol like  or disable this
# and use the os module below
[username]
show_always = true
style_user = "bg:#47225e"
style_root = "bg:#47225e"
format = '[$user ]($style)'
disabled = false
# An alternative to the username module which displays a symbol that
# represents the current operating system
[os]
style = "bg:#47225e"
2024-05-05 21:22:19 +00:00
disabled = false
2024-05-04 23:43:39 +00:00
[directory]
style = "bg:#ff0080"
format = "[ $path ]($style)"
truncate_to_repo = true
truncation_length = 3
truncation_symbol = "…/"
# Here is how you can shorten some long paths by text replacement
# similar to mapped_locations in Oh My Posh:
[directory.substitutions]
"Documents" = "󰈙 "
"Downloads" = " "
"Music" = " "
"Pictures" = " "
# Keep in mind that the order matters. For example:
# "Important Documents" = " 󰈙 "
# will not be replaced, because "Documents" was already substituted before.
# So either put "Important Documents" before "Documents" or use the substituted version:
# "Important 󰈙 " = " 󰈙 "
[c]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[docker_context]
symbol = " "
style = "bg:#ff0080"
format = '[ $symbol $context ]($style)'
[elixir]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[elm]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[git_branch]
symbol = ""
style = "bg:#005353"
format = '[ $symbol $branch ]($style)'
[git_status]
style = "bg:#005353"
format = '[$all_status$ahead_behind ]($style)'
[golang]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[gradle]
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[haskell]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[java]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[julia]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[nodejs]
symbol = ""
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[nim]
symbol = "󰆥 "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[rust]
symbol = ""
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[scala]
symbol = " "
style = "bg:#00334e"
format = '[ $symbol ($version) ]($style)'
[time]
disabled = false
time_format = "%R" # Hour:Minute Format
style = "bg:#47225e"
2024-05-05 21:22:19 +00:00
format = '[ $time ]($style)'
[status]
style = 'bg:#47225e'
2024-05-10 17:39:53 +00:00
symbol = '[](fg:#ff0000 bg:#47225e)'
success_symbol = '[󰗡](fg:#009900 bg:#47225e)'
2024-05-10 17:39:02 +00:00
format = '[ $symbol$common_meaning$signal_name$maybe_int]($style)'
2024-05-05 21:22:19 +00:00
map_symbol = true
disabled = false
2024-05-10 16:42:58 +00:00
[shell]
fish_indicator = ''
powershell_indicator = '󰨊'
pwsh_indicator = ''
cmd_indicator = ''
bash_indicator = '󱆃'
unknown_indicator = ''
2024-05-10 16:42:58 +00:00
style = '(fg:#00ffff)'
disabled = false