Last active
November 22, 2023 23:50
-
-
Save koad/733ca120bc7f0ca44ebd2e96d658b177 to your computer and use it in GitHub Desktop.
~/.config/starship.toml
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
# Saved to -> https://gist.github.com/koad/733ca120bc7f0ca44ebd2e96d658b177 | |
# Last Updated -> July 5th, 2023 | |
# | |
# koad-was-here | |
# | |
# koad's https://starship.rs prompt configuration. | |
# ~/.config/starship.toml | |
format = """ | |
$cmd_duration\ | |
$username\ | |
$hostname\ | |
$env_var\ | |
$directory\ | |
$vcsh\ | |
$memory_usage\ | |
$hg_branch\ | |
$docker_context\ | |
$package\ | |
$buf\ | |
$c\ | |
$cmake\ | |
$cobol\ | |
$container\ | |
$dart\ | |
$deno\ | |
$dotnet\ | |
$elixir\ | |
$elm\ | |
$erlang\ | |
$golang\ | |
$haskell\ | |
$helm\ | |
$java\ | |
$julia\ | |
$kotlin\ | |
$lua\ | |
$nim\ | |
$nodejs\ | |
$ocaml\ | |
$perl\ | |
$php\ | |
$pulumi\ | |
$purescript\ | |
$python\ | |
$rlang\ | |
$red\ | |
$ruby\ | |
$rust\ | |
$scala\ | |
$swift\ | |
$terraform\ | |
$vlang\ | |
$vagrant\ | |
$zig\ | |
$nix_shell\ | |
$conda\ | |
$spack\ | |
$aws\ | |
$gcloud\ | |
$openstack\ | |
$azure\ | |
$crystal\ | |
$sudo\ | |
$jobs\ | |
$battery\ | |
$custom\ | |
$git_branch\ | |
$git_commit\ | |
$git_state\ | |
$git_metrics\ | |
$git_status\ | |
$line_break\ | |
$time\ | |
$status\ | |
$shell\ | |
$character""" | |
[cmd_duration] | |
min_time = 3_000 | |
show_milliseconds = true | |
format = "\ntook [$duration]($style)\n\n" | |
[username] | |
style_user = "bright-white bold" | |
style_root = "red bold" | |
format = "[$user]($style) [on](dimmed white) " | |
disabled = false | |
show_always = true | |
[hostname] | |
ssh_only = false | |
format = "[$hostname]($style) " | |
trim_at = "-" | |
style = "bold white" | |
disabled = false | |
[env_var] | |
variable = "ENTITY" | |
format = "([with ](dimmed white)[$env_value](bright-white bold)) " | |
[directory] | |
truncation_length = 8 | |
truncation_symbol = "โฆ/" | |
format = "[$path]($style)[$lock_symbol]($lock_style) " | |
[memory_usage] | |
# format = "$symbol[${ram}( | ${swap})]($style) " | |
format = "$symbol[${ram}]($style) " | |
threshold = 50 | |
style = "bold dimmed white" | |
disabled = false | |
[battery] | |
full_symbol = "๐" | |
charging_symbol = "๐" | |
discharging_symbol = "โก" | |
[[battery.display]] | |
threshold = 30 | |
style = "bold red" | |
[julia] | |
format = "[$symbol$version]($style) " | |
symbol = "เฎ " | |
style = "bold green" | |
[package] | |
disabled = true | |
[python] | |
format = "[$symbol$version]($style) " | |
style = "bold green" | |
[jobs] | |
symbol = "+ " | |
style = "bright-white" | |
threshold = 4 | |
[custom.git_origin_url] | |
disabled = false | |
when = true | |
require_repo = true | |
shell = ["git", "config", "--get"] | |
command = "remote.origin.url" | |
style = "bright-black" | |
use_stdin = false | |
format = "\n[$output]($style) " | |
description = 'The currently configured Git remote.origin.url' | |
[git_branch] | |
format = "[$symbol$branch]($style) " | |
symbol = "๐ฑ " | |
truncation_length = 4 | |
truncation_symbol = '' | |
ignore_branches = ['master'] | |
style = "bold green" | |
[git_commit] | |
commit_hash_length = 8 | |
style = "bold white" | |
[git_status] | |
conflicted = "๐คท " | |
ahead = "๐๏ธ ๐จ ร${count} " | |
behind = "๐ข ร${count} " | |
diverged = "๐ฑ ๐๏ธ ๐จร${ahead_count} ๐ขร${behind_count} " | |
untracked = "๐ฑร${count} " | |
stashed = "๐ฆ " | |
modified = "๐ร${count} " | |
staged = "๐๏ธร${count} " | |
renamed = "๐ร${count} " | |
deleted = "๐๏ธร${count} " | |
style = "bright-white" | |
format = "$all_status$ahead_behind" | |
[nodejs] | |
format='[nodejs $symbol($version )]($style)' | |
[time] | |
time_format = "%y:%m:%d:%H:%M:%S" | |
format = "$time($style) " | |
style = "bold grey" | |
disabled = false | |
[character] | |
success_symbol = "[โฏ](bold green)" | |
error_symbol = "[โ](bold red)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment