starship/docs/de-DE
2020-11-28 23:45:59 -05:00
..
advanced-config docs(i18n): New Crowdin translations (#1366) 2020-07-23 17:07:10 -04:00
config docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
faq docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00
guide docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
migrating-to-0.45.0 docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00
presets docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
README.md docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg The minimal, blazing-fast, and infinitely customizable prompt for any shell! Loslegen → ./guide/
title details
Kompatibel Läuft mit den beliebtesten Shells auf den beliebtesten Betriebssystemen. Überall einsetzbar!
title details
Rust-Powered Bringt die schnelligkeit und zuverlässigkeit von Rust in deinen Shell-prompt.
title details
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.
ICS lizenziert | Copyright © 2019-heute Starship-Mitwirkende Starship: Cross-Shell Prompt 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.

Schnellinstallation

  1. Installiere die Binärversion von starship:

    Neueste Version installieren

    With Shell:

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

    Installation mithilfe eines Paket-Managers

    Mit Homebrew:

    brew install starship
    

    Mit 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

    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.

    Invoke-Expression (&starship init powershell)
    

    Ion

    Trage folgendes am Ende der ~/.config/ion/initrc ein:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)