1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-30 23:20:52 +00:00
starship/docs/de-DE
2022-06-16 08:48:50 -04:00
..
advanced-config docs(i18n): new Crowdin updates (#3789) 2022-04-18 15:48:28 +01:00
config docs(i18n): new Crowdin updates (#4030) 2022-06-16 08:48:50 -04:00
faq docs(i18n): new Crowdin updates (#3711) 2022-03-24 21:47:11 +01:00
guide docs(i18n): new Crowdin updates (#4030) 2022-06-16 08:48:50 -04:00
installing docs(i18n): new Crowdin updates (#3789) 2022-04-18 15:48:28 +01:00
migrating-to-0.45.0 docs(i18n): new Crowdin updates (#3711) 2022-03-24 21:47:11 +01:00
presets docs(i18n): new Crowdin updates (#3711) 2022-03-24 21:47:11 +01:00
README.md docs(i18n): new Crowdin updates (#3890) 2022-05-24 17:19:44 -04: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 deine 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! Sie zeigt die Information, die man benötigt an, während sie schnell und minimal bleibt. Quick installation available for Bash, Fish, ZSH, Ion, Tcsh, Elvish, Nu, Xonsh, Cmd, and PowerShell.

Voraussetzungen

  • Eine Nerd Font installiert und aktiviert in Ihrem Terminal.

Schnellinstallation

  1. Installiere die Binärversion von starship:

    Neueste Version installieren

    Mit Shell:

    curl -sS https://starship.rs/install.sh | sh
    

    Um Starship selbst zu aktualisieren, lasse das Skript oben nochmal laufen. Es wird die vorhandene Version ersetzen, ohne die Konfiguration von Starship zu berühren.

    Installation mithilfe eines Paket-Managers

    Mit Homebrew:

    brew install starship
    

    Mit scoop:

    scoop install starship
    
  2. Führe den init Befehl zum Start der Shell aus:

    Bash

    Füge dies ans Ende von ~/.bashrc:

    # ~/.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

    Füge dies ans Ende von ~/.zshrc:

    # ~/.zshrc
    
    eval "$(starship init zsh)"
    

    Powershell

    Füge das folgende zum Ende von Microsoft.PowerShell_profile.ps1 hinzu. Sie können den Speicherort dieser Datei überprüfen, indem Sie die $PROFILE Variable in PowerShell abfragen. Normalerweise ist der Pfad ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 oder ~/.config/powershell/Microsoft.PowerShell_profile.ps1 auf -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.18 or higher is supported.

    :::

    Trage folgendes am Ende von ~/.config/fish/rc.elv ein:

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

    Tcsh

    Trage folgendes am Ende von ~/.bashrc ein:

    # ~/.tcshrc
    
    eval `starship init tcsh`
    

    Nushell

    ::: warning

    This will change in the future. Only Nushell v0.61+ is supported.

    :::

    Add the following to to the end of your Nushell env file (find it by running $nu.env-path in Nushell):

    mkdir ~/.cache/starship
    starship init nu | save ~/.cache/starship/init.nu
    

    And add the following to the end of your Nushell configuration (find it by running $nu.config-path):

    source ~/.cache/starship/init.nu
    

    Xonsh

    Füge folgendes an das Ende von ~/.xonshrc hinzu:

    # ~/.xonshrc
    
    execx($(starship init xonsh))
    

    ⌘ Cmd

    You need to use Clink (v1.2.30+) with Cmd. Add the following to a file starship.lua and place this file in Clink scripts directory:

    -- starship.lua
    
    load(io.popen('starship init cmd'):read("*a"))()