1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-06 04:12:28 +00:00
starship/docs/de-DE/README.md

115 lines
2.6 KiB
Markdown
Raw Normal View History

---
home: true
heroImage: /logo.svg
2020-02-04 17:11:36 +00:00
heroText:
tagline: The minimal, blazing-fast, and infinitely customizable prompt for any shell!
actionText: Loslegen →
actionLink: ./guide/
2020-02-04 17:11:36 +00:00
features:
-
title: Kompatibel
details: Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!
-
title: Rust-Powered
details: Bringt die schnelligkeit und zuverlässigkeit von Rust in deinen Shell-prompt.
-
title: Individualisierbar
details: 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.
footer: ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende
2020-02-04 17:11:36 +00:00
#Used for the description meta tag, for SEO
metaTitle: "Starship: Cross-Shell Prompt"
description: Starship is the minimal, blazing fast, and extremely customizable prompt for any shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, and PowerShell.
---
<div class="center">
<video class="demo-video" muted autoplay loop playsinline>
<source src="/demo.webm" type="video/webm">
<source src="/demo.mp4" type="video/mp4">
</video>
</div>
### Schnellinstallation
1. Installiere die Binärversion von **starship**:
2020-02-04 17:11:36 +00:00
#### Neueste Version installieren
2019-12-24 21:54:29 +00:00
With Shell:
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
```
2020-02-04 17:11:36 +00:00
#### Installation mithilfe eines Paket-Managers
2020-02-04 17:11:36 +00:00
Mit [Homebrew](https://brew.sh/):
```sh
2019-12-24 21:54:29 +00:00
brew install starship
```
2020-02-04 17:11:36 +00:00
Mit [scoop](https://scoop.sh):
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
```
1. Füge das init-Skript zur Konfigurationsdatei deiner Shell hinzu:
#### Bash
Trage folgendes am Ende der `~/.bashrc` ein:
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
Trage folgendes am Ende der `~/.config/fish/config.fish` ein:
```sh
# ~/.config/fish/config.fish
starship init fish | source
```
#### Zsh
Trage folgendes am Ende der `~/.zshrc` ein:
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
#### 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
2020-02-04 17:11:36 +00:00
# ~\Documents\PowerShell\Profile.ps1
Invoke-Expression (&starship init powershell)
```
2019-12-24 21:54:29 +00:00
#### Ion
2020-02-04 17:11:36 +00:00
Trage folgendes am Ende der `~/.config/ion/initrc` ein:
2019-12-24 21:54:29 +00:00
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```