Files
starship/docs/de-DE/README.md
T

167 lines
3.8 KiB
Markdown
Raw Normal View History

---
home: true
heroImage: /logo.svg
2020-02-04 12:11:36 -05:00
heroText:
2021-01-03 03:56:07 -05:00
tagline: Minimale, super schnelle und unendlich anpassbare Prompt für jede Shell!
actionText: Loslegen →
2020-02-02 19:51:45 -05:00
actionLink: ./guide/
2020-02-04 12:11:36 -05: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 12:11:36 -05:00
#Used for the description meta tag, for SEO
metaTitle: "Starship: Cross-Shell Prompt"
2021-08-14 09:24:51 -04:00
description: Starship ist eine minimale, super schnelle, und extrem anpassbare Prompt für jede Shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, Tcsh, Elvish, Nu, Xonsh, and PowerShell.
---
<div class="center">
2019-12-14 18:46:45 -05:00
<video class="demo-video" muted autoplay loop playsinline>
<source src="/demo.webm" type="video/webm">
<source src="/demo.mp4" type="video/mp4">
</video>
</div>
2021-04-22 17:12:09 -04:00
### Voraussetzungen
- A [Nerd Font](https://www.nerdfonts.com/) installed and enabled in your terminal.
### Schnellinstallation
1. Installiere die Binärversion von **starship**:
2020-02-04 12:11:36 -05:00
#### Neueste Version installieren
2021-04-05 10:55:57 -04:00
Mit Shell:
```sh
2021-04-22 17:12:09 -04:00
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
```
2021-04-05 10:55:57 -04:00
To update the Starship itself, rerun the above script. It will replace the current version without touching Starship's configuration.
2020-02-04 12:11:36 -05:00
#### Installation mithilfe eines Paket-Managers
2021-04-08 11:52:32 -04:00
Mit [Homebrew](https://brew.sh/):
```sh
2019-12-24 16:54:29 -05:00
brew install starship
```
2020-02-04 12:11:36 -05:00
Mit [scoop](https://scoop.sh):
2019-12-24 16:54:29 -05: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
2020-11-28 23:45:59 -05:00
Add the following to the end of `Microsoft.PowerShell_profile.ps1`. You can check the location of this file by querying the `$PROFILE` variable in PowerShell. Typically the path is `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix.
```sh
Invoke-Expression (&starship init powershell)
```
2019-12-24 16:54:29 -05:00
#### Ion
2020-02-04 12:11:36 -05:00
Trage folgendes am Ende der `~/.config/ion/initrc` ein:
2019-12-24 16:54:29 -05:00
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```
2021-02-06 12:46:15 -05:00
2021-08-14 09:24:51 -04:00
2021-02-06 12:46:15 -05:00
#### Elvish
::: warning Only elvish v0.15 or higher is supported. :::
Add the following to the end of `~/.elvish/rc.elv`:
```sh
# ~/.elvish/rc.elv
eval (starship init elvish)
```
2021-03-15 13:18:42 -04:00
#### Tcsh
Add the following to the end of `~/.tcshrc`:
```sh
# ~/.tcshrc
eval `starship init tcsh`
```
2021-07-10 17:15:23 -04:00
2021-08-14 09:24:51 -04:00
#### Nushell
2021-07-10 17:15:23 -04:00
::: 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.
```toml
startup = [
"mkdir ~/.cache/starship",
"starship init nu | save ~/.cache/starship/init.nu",
"source ~/.cache/starship/init.nu"
]
prompt = "starship_prompt"
```
2021-08-14 09:24:51 -04:00
#### Xonsh
Add the following to the end of `~/.xonshrc`:
```sh
# ~/.xonshrc
execx($(starship init xonsh))
```