.. | ||
advanced-config | ||
config | ||
faq | ||
guide | ||
installing | ||
migrating-to-0.45.0 | ||
presets | ||
README.md |
home | heroImage | heroText | tagline | actionText | actionLink | features | footer | metaTitle | description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true | /logo.svg | Minimale, super schnelle und unendlich anpassbare Prompt für jede Shell! | Loslegen → | ./guide/ |
|
ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende | Starship: Cross-Shell Prompt | Starship ist eine minimale, super schnelle, und extrem anpassbare Prompt für jede Shell! Sie zeigt die Information, die man benötigt an, während sie schnell und minimal bleibt. Schnell-Installation verfügbar für Bash, Fish, ZSH, Ion, Tcsh, Elvish, Nu, Xonsh, und PowerShell. |
Voraussetzungen
- Eine Nerd Font installiert und aktiviert in Ihrem Terminal.
Schnellinstallation
-
Installiere die Binärversion von starship:
Neueste Version installieren
Mit Shell:
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
Um Starship selbst zu aktualisieren, lasse das Skript oben nochmal laufen. Es wird die vorhandene Version ersetzen, ohne die Konfiguration von Starship zu berühren.
Installation mithilfe eines Paket-Managers
Mit Homebrew:
brew install starship
Mit scoop:
scoop install starship
-
Füge das init-Skript zur Konfigurationsdatei deiner Shell hinzu:
Bash
Trage folgendes am Ende der
~/.bashrc
ein:# ~/.bashrc eval "$(starship init bash)"
Fish
Trage folgendes am Ende der
~/.config/fish/config.fish
ein:# ~/.config/fish/config.fish starship init fish | source
Zsh
Trage folgendes am Ende der
~/.zshrc
ein:# ~/.zshrc eval "$(starship init zsh)"
Powershell
Füge das folgende zum Ende von
Microsoft.PowerShell_profile.ps1
hinzu. Sie können den Speicherort dieser Datei überprüfen, indem Sie die$PROFILE
Variable in PowerShell abfragen. Normalerweise ist der Pfad~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
oder~/.config/powershell/Microsoft.PowerShell_profile.ps1
auf -Nix.Invoke-Expression (&starship init powershell)
Ion
Trage folgendes am Ende der
~/.config/ion/initrc
ein:# ~/.config/ion/initrc eval $(starship init ion)
Elvish
::: warning Nur elvish v0.15 oder höher ist unterstützt. :::
Trage folgendes am Ende von
~/.config/fish/rc.elv
ein:# ~/.elvish/rc.elv eval (starship init elvish)
Tcsh
Trage folgendes am Ende von
~/.bashrc
ein:# ~/.tcshrc eval `starship init tcsh`
Nushell
::: warning This will change in the future. Only nu version v0.33 or higher is supported. ::: Add the following to your nu config file. You can check the location of this file by running
config path
in nu.startup = [ "mkdir ~/.cache/starship", "starship init nu | save ~/.cache/starship/init.nu", "source ~/.cache/starship/init.nu" ] prompt = "starship_prompt"
Xonsh
Add the following to the end of
~/.xonshrc
:# ~/.xonshrc execx($(starship init xonsh))