2019-10-04 08:57:43 +00:00
---
home: true
heroImage: /logo.svg
2019-10-21 14:42:08 +00:00
actionText: Loslegen →
2019-10-04 08:57:43 +00:00
actionLink: /guide/
2019-10-21 14:42:08 +00:00
footer: ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende
2019-10-04 08:57:43 +00:00
---
< div class = "features" >
< div class = "feature" >
2019-10-21 14:42:08 +00:00
< h2 > Kompatibel< / h2 >
< p > Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!< / p >
2019-10-04 08:57:43 +00:00
< / div >
< div class = "feature" >
2019-10-21 14:42:08 +00:00
< h2 > Antrieben von Rust< / h2 >
< p > Bringt die branchenweit beste Geschwindigkeit und Sicherheit von Rust mit, um Deine Eingaben so schnell und zuverlässig wie nur möglich zu machen.< / p >
2019-10-04 08:57:43 +00:00
< / div >
< div class = "feature" >
2019-10-21 14:42:08 +00:00
< h2 > Individualisierbar< / h2 >
< p > Jedes noch so kleine Detail kann nach Deinen Wünschen angepasst werden, um die Eingabeaufforderung so minimal oder funktionsreich zu gestalten, wie Du es möchtest.< / p >
2019-10-04 08:57:43 +00:00
< / div >
< / div >
< div class = "center" >
2019-12-14 23:46:45 +00:00
< video class = "demo-video" muted autoplay loop playsinline >
2019-10-04 08:57:43 +00:00
< source src = "/demo.webm" type = "video/webm" >
< source src = "/demo.mp4" type = "video/mp4" >
< / video >
< / div >
2019-10-21 14:42:08 +00:00
### Schnellinstallation
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
1. Installiere die Binärversion von **starship** :
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
#### Install Latest Version
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
With Shell:
2019-10-04 08:57:43 +00:00
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
2019-10-04 08:57:43 +00:00
```
2019-12-24 21:54:29 +00:00
#### Install via Package Manager
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
With [Homebrew ](https://brew.sh/ ):
2019-10-04 08:57:43 +00:00
```sh
2019-12-24 21:54:29 +00:00
brew install starship
2019-10-04 08:57:43 +00:00
```
2019-12-24 21:54:29 +00:00
With [Scoop ](https://scoop.sh ):
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
2019-10-04 08:57:43 +00:00
```
2019-10-21 14:42:08 +00:00
1. Füge das init-Skript zur Konfigurationsdatei deiner Shell hinzu:
2019-10-04 08:57:43 +00:00
#### Bash
2019-10-21 14:42:08 +00:00
Trage folgendes am Ende der `~/.bashrc` ein:
2019-10-04 08:57:43 +00:00
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
2019-10-21 14:42:08 +00:00
Trage folgendes am Ende der `~/.config/fish/config.fish` ein:
2019-10-04 08:57:43 +00:00
```sh
# ~/.config/fish/config.fish
2019-10-29 03:48:45 +00:00
starship init fish | source
2019-10-04 08:57:43 +00:00
```
#### Zsh
2019-10-21 14:42:08 +00:00
Trage folgendes am Ende der `~/.zshrc` ein:
2019-10-04 08:57:43 +00:00
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
2019-10-21 14:42:08 +00:00
#### Powershell
Trage folgendes in das Powershell-Profil ($Profile) ein. Standardmäßig gespeichert unter: `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` auf Windows, oder `~/.config/powershell/Microsoft.PowerShell_profile.ps1` auf -Nix:
```sh
# notepad $PROFILE
2019-12-24 21:54:29 +00:00
2019-10-21 14:42:08 +00:00
# ~\Documents\PowerShell\Profile.ps1
Invoke-Expression (& starship init powershell)
```
2019-12-24 21:54:29 +00:00
#### Ion
Add the following to the end of `~/.config/ion/initrc` :
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```