Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- format = """
- [](#3B4252)\
- $username\
- (#3B4252)$hostname\
- [](bg:#434C5E fg:#3B4252)\
- $directory\
- [](fg:#434C5E bg:#4C566A)\
- $git_branch\
- $git_commit\
- $git_status\
- [](fg:#4C566A bg:#86BBD8)\
- $python\
- $c\
- $elixir\
- $elm\
- $golang\
- $haskell\
- $java\
- $julia\
- $nodejs\
- $nim\
- $rust\
- $scala\
- [](fg:#86BBD8 bg:#06969A)\
- $docker_context\
- [](fg:#06969A)\
- $fill[](fg:#33658A)\
- $character$cmd_duration\
- [](bg:#33658A fg:#3B4252)$time\
- ${custom.foo}\
- [](fg:#3B4252)
- \\$ """
- # Timeout for commands executed by starship (in milliseconds).
- command_timeout = 1200
- # Disable the blank line at the start of the prompt
- add_newline = false
- [fill]
- symbol = ' '
- disabled = false
- # You can also replace your username with a neat symbol like to save some space
- [username]
- show_always = true
- style_user = "bg:#3B4252"
- style_root = "bg:#3B4252"
- format = '[$user]($style)'
- [cmd_duration]
- min_time = 5
- show_milliseconds = true
- format = '[$duration ](bg:#33658A)'
- disabled = false
- [hostname]
- ssh_only = true
- ssh_symbol = '🌐'
- format = "[@$hostname]($style)"
- style = "bg:#3B4252"
- trim_at = ".companyname.com"
- disabled = false
- [directory]
- style = "bg:#434C5E"
- format = "[ $path ]($style)"
- truncation_length = 1
- 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 " = " "
- [docker_context]
- symbol = " "
- style = "bg:#06969A"
- format = '[ $symbol $context ]($style) $path'
- [elixir]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [elm]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [git_branch]
- symbol = ""
- style = "bg:#4C566A fg:yellow"
- format = '[ $symbol $branch ]($style)'
- [git_status]
- style = "bg:#4C566A fg:#86BBD8"
- renamed = '» '
- modified = '!${count}'
- staged = ' +${count}'
- untracked = ' ?${count}'
- format = '[$all_status$ahead_behind ]($style)'
- [git_commit]
- format = '[\($hash$tag\) ]($style)'
- style = "bg:#4C566A fg:cyan"
- only_detached = true
- tag_disabled = false
- disabled = false
- [golang]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [java]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [julia]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [nodejs]
- symbol = ""
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [nim]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [rust]
- symbol = ""
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [python]
- symbol = "👾 "
- style = "bg:#86BBD8"
- format = '[${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)'
- [scala]
- symbol = " "
- style = "bg:#86BBD8"
- format = '[ $symbol ($version) ]($style)'
- [time]
- disabled = true
- time_format = "%R" # Hour:Minute Format
- style = "bg:#3B4252"
- format = '[$time ]($style)'
- [battery]
- disabled = false
- discharging_symbol = ''
- unknown_symbol = ''
- format = '[$percentage]($style)'
- [[battery.display]]
- threshold = 78
- style = "bg:#3B4252"
- [character]
- format = '$symbol'
- success_symbol = '[ ](bold #33DA7A bg:#33658A)'
- error_symbol = '[✗ ](bold #F66151 bg:#33658A)'
- [custom.foo]
- disabled = false
- format = '[( $output)]($style)'
- style = "bg:#3B4252"
- command = "battery-time" # shows output of command
- # when = """ [[ $OSTYPE == "linux-gnu" ]] && echo 1 """
- when = true
- os = "linux"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement