1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-25 03:12:35 +00:00
starship/docs/de-DE
2021-05-01 14:20:08 -04:00
..
advanced-config docs(i18n): new Crowdin updates (#2634) 2021-05-01 14:20:08 -04:00
config docs(i18n): new Crowdin updates (#2634) 2021-05-01 14:20:08 -04:00
faq docs(i18n): New Crowdin updates (#2564) 2021-04-22 23:12:09 +02:00
guide docs(i18n): New Crowdin updates (#2564) 2021-04-22 23:12:09 +02:00
installing docs(i18n): New Crowdin updates (#2564) 2021-04-22 23:12:09 +02:00
migrating-to-0.45.0 docs(i18n): New Crowdin updates (#2469) 2021-04-05 16:55:57 +02:00
presets docs(i18n): New Crowdin updates (#2559) 2021-04-08 11:52:32 -04:00
README.md docs(i18n): New Crowdin updates (#2564) 2021-04-22 23:12:09 +02:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg Minimale, super schnelle und unendlich anpassbare Prompt für jede 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 ist eine minimale, super schnelle, und extrem anpassbare Prompt für jede Shell! Shows the information you need, while staying sleek and minimal. Schnellinstallation verfügbar für Bash, Fish, ZSH, Ion und PowerShell.

Voraussetzungen

  • A Nerd Font installed and enabled in your terminal.

Schnellinstallation

  1. Installiere die Binärversion von starship:

    Neueste Version installieren

    Mit Shell:

    sh -c "$(curl -fsSL https://starship.rs/install.sh)"
    

    To update the Starship itself, rerun the above script. It will replace the current version without touching Starship's configuration.

    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)
    

    Elvish

    ::: warning Only elvish v0.15 or higher is supported. :::

    Add the following to the end of ~/.elvish/rc.elv:

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)
    

    Tcsh

    Add the following to the end of ~/.tcshrc:

    # ~/.tcshrc
    
    eval `starship init tcsh`