1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-07-02 14:13:29 +00:00
starship/docs/fr-FR
2019-11-29 14:47:23 -05:00
..
advanced-config docs(i18n): Update Crowdin translations (#517) 2019-10-21 23:42:08 +09:00
config docs(i18n): New Crowdin translations (#619) 2019-11-29 14:47:23 -05:00
guide docs(i18n): New Crowdin translations (#619) 2019-11-29 14:47:23 -05:00
README.md docs(i18n): Update documentation translations (#575) 2019-11-02 20:12:46 +09:00

home heroImage actionText actionLink footer
true /logo.svg Commencez → /guide/ ISC licencié | Copyright © 2019-present Starship Contributors

Compatibilité d'abord

Fonctionne sur tous les principaux shells et système d'exploitation. Utilisez-le partout !

Propulsé par Rust

Profiter de toute la rapidité et la securité de Rust, pour rendre votre prompt le plus rapide et fiable possible.

Personnalisable

Tous les petits détails sont personnalisable à votre goût, pour rendre votre prompt aussi léger ou complet que le vous souhaitez.

Installation

  1. Installer le binaire starship :

    Télécharger les archives des binaires précompilés si vous n'utilisez pas une des plateformes citées ci-dessous.

    Homebrew

    $ brew install starship
    

    Rust (v1.38 ou plus)

    $ cargo install starship
    

    Arch Linux (AUR)

    Starship is disponible sur AUR sous le nom starship. Installer le avec yay ou votre client AUR favori.

    $ yay -S starship
    

    Nix (non stable)

    $ nix-env --install starship
    

    Termux

    $ pkg install starship
    
  2. Add the init script to your shell's config file:

    Bash

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

    # ~/.bashrc
    
    eval "$(starship init bash)"
    

    Fish

    Add the following to the end of ~/.config/fish/config.fish:

    # ~/.config/fish/config.fish
    
    starship init fish | source
    

    Zsh

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

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

    Powershell

    Add the following to the end of ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 (or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix):

    # ~\Documents\PowerShell\Profile.ps1
    Invoke-Expression (&starship init powershell)