├── Preview.png ├── Preview1.png ├── Screenshot.png ├── README.md └── starship.toml /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilSeal1980/Starship-Prompt/HEAD/Preview.png -------------------------------------------------------------------------------- /Preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilSeal1980/Starship-Prompt/HEAD/Preview1.png -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilSeal1980/Starship-Prompt/HEAD/Screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Starship-Prompt 2 | 3 | The minimal, blazing-fast, and infinitely customizable prompt for any shell! 4 | 5 | Preview 6 | 7 | Fast: it's fast – really really fast! 🚀 8 | 9 | Customizable: configure every aspect of your prompt. 10 | 11 | Universal: works on any shell, on any operating system. 12 | 13 | Intelligent: shows relevant information at a glance. 14 | 15 | Feature rich: support for all your favorite tools. 16 | 17 | Easy: quick to install – start using it in minutes. 18 | -------------------------------------------------------------------------------- /starship.toml: -------------------------------------------------------------------------------- 1 | format = """ 2 | [ ](bold white)$hostname$kubernetes$directory$git_branch$git_commit$git_state$git_status$docker_context$package$golang$helm$java$cmake$julia$kotlin$lua$nim$nodejs$python$ruby$rust$swift$terraform$aws$gcloud$azure $battery 3 | [ ❯ ](bold green)""" 4 | 5 | [aws] 6 | symbol = " " 7 | 8 | [buf] 9 | symbol = " " 10 | 11 | [c] 12 | symbol = " " 13 | 14 | [conda] 15 | symbol = " " 16 | 17 | [dart] 18 | symbol = " " 19 | 20 | [directory] 21 | read_only = " " 22 | truncation_length = 7 23 | truncation_symbol = "…/" 24 | 25 | [hostname] 26 | ssh_only = false 27 | format = '[$hostname]($style) ' 28 | style = "blue bold" 29 | trim_at = "." 30 | disabled = false 31 | 32 | [username] 33 | style_user = "blue bold" 34 | style_root = "red bold" 35 | format = "[$user]($style) " 36 | disabled = false 37 | show_always = true 38 | 39 | [docker_context] 40 | symbol = " " 41 | 42 | [elixir] 43 | symbol = " " 44 | 45 | [elm] 46 | symbol = " " 47 | 48 | [git_branch] 49 | symbol = " " 50 | 51 | [git_status] 52 | ahead = "⇡🏎💨${count}" 53 | diverged = "⇕⇡😵${ahead_count}⇣${behind_count}" 54 | behind = "⇣😰${count}" 55 | conflicted = "🏳 " 56 | untracked = "🤷" 57 | stashed = "📦" 58 | modified = "📝" 59 | staged = '[++\($count\)](green)' 60 | renamed = "👅" 61 | deleted ="🗑 " 62 | 63 | [golang] 64 | symbol = " " 65 | 66 | [haskell] 67 | symbol = " " 68 | 69 | [hg_branch] 70 | symbol = " " 71 | 72 | [java] 73 | symbol = " " 74 | 75 | [julia] 76 | symbol = " " 77 | 78 | [lua] 79 | symbol = " " 80 | 81 | [memory_usage] 82 | symbol = " " 83 | 84 | [meson] 85 | symbol = "喝 " 86 | 87 | [nim] 88 | symbol = " " 89 | 90 | [nix_shell] 91 | symbol = " " 92 | 93 | [nodejs] 94 | symbol = " " 95 | 96 | [package] 97 | symbol = " " 98 | 99 | [python] 100 | symbol = " " 101 | 102 | [rlang] 103 | symbol = "ﳒ " 104 | 105 | [ruby] 106 | symbol = " " 107 | 108 | [rust] 109 | symbol = " " 110 | 111 | [scala] 112 | symbol = " " 113 | 114 | [spack] 115 | symbol = "🅢 " 116 | 117 | [battery] 118 | full_symbol = "🔋" 119 | charging_symbol = "🔌 " 120 | discharging_symbol = "⚡️" 121 | 122 | [[battery.display]] # "bold red" style when capacity is between 0% and 10% 123 | threshold = 10 124 | style = "bold red" 125 | 126 | [[battery.display]] # "bold yellow" style when capacity is between 10% and 30% 127 | threshold = 30 128 | style = "bold yellow" 129 | 130 | [[battery.display]] 131 | threshold = 100 132 | style = "bold green" 133 | --------------------------------------------------------------------------------