1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-07-09 01:03:32 +00:00
starship/docs/de-DE
2020-02-02 19:51:48 -05:00
..
advanced-config docs(i18n): Update doc translations (#697) 2019-12-14 18:46:45 -05:00
config docs(i18n): Update translations (#863) 2020-01-23 11:27:26 -05:00
faq docs(i18n): Update doc translations (#697) 2019-12-14 18:46:45 -05:00
guide docs(i18n): Update translations (#863) 2020-01-23 11:27:26 -05:00
presets docs(i18n): Update translations (#735) 2019-12-24 16:54:29 -05:00
README.md docs: Improve description meta tag for SEO 2020-02-02 19:51:48 -05:00

home heroImage heroText tagline actionText actionLink footer
true /logo.svg null The cross-shell prompt for astronauts Loslegen → ./guide/ ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende

Kompatibel

Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!

Rust-Powered

Bringt die schnelligkeit und zuverlässigkeit von Rust in deinen Shell-prompt.

Individualisierbar

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.

Schnellinstallation

  1. Installiere die Binärversion von starship:

    Install Latest Version

    With Shell:

    curl -fsSL https://starship.rs/install.sh | bash
    

    Install via Package Manager

    With Homebrew:

    brew install starship
    

    With Scoop:

    scoop install starship
    
  2. 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

    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:

    # notepad $PROFILE
    
    

~\Documents\PowerShell\Profile.ps1

Invoke-Expression (&starship init powershell)



#### Ion

Add the following to the end of `~/.config/ion/initrc`:

```sh
# ~/.config/ion/initrc

eval $(starship init ion)