2019-10-04 08:57:43 +00:00
---
home: true
heroImage: /logo.svg
2019-10-21 14:42:08 +00:00
actionText: Commencez →
2019-10-04 08:57:43 +00:00
actionLink: /guide/
2019-10-21 14:42:08 +00:00
footer: ISC licencié | Copyright © 2019-present Starship Contributors
2019-10-04 08:57:43 +00:00
---
< div class = "features" >
< div class = "feature" >
2019-10-21 14:42:08 +00:00
< h2 > Compatibilité d'abord< / h2 >
2019-11-02 11:12:46 +00:00
< p > Fonctionne sur tous les principaux shells et système d'exploitation. Utilisez-le partout !< / p >
2019-10-04 08:57:43 +00:00
< / div >
< div class = "feature" >
2019-11-02 11:12:46 +00:00
< h2 > Propulsé par Rust< / h2 >
< p > Profiter de toute la rapidité et la securité de Rust, pour rendre votre prompt le plus rapide et fiable possible.< / p >
2019-10-04 08:57:43 +00:00
< / div >
< div class = "feature" >
2019-11-02 11:12:46 +00:00
< h2 > Personnalisable< / h2 >
< p > Tous les petits détails sont personnalisable à votre goût, pour rendre votre prompt aussi léger ou complet que le vous souhaitez.< / p >
2019-10-04 08:57:43 +00:00
< / div >
< / div >
< div class = "center" >
2019-12-14 23:46:45 +00:00
< video class = "demo-video" muted autoplay loop playsinline >
2019-10-04 08:57:43 +00:00
< source src = "/demo.webm" type = "video/webm" >
< source src = "/demo.mp4" type = "video/mp4" >
< / video >
< / div >
2019-11-02 11:12:46 +00:00
### Installation
2019-10-04 08:57:43 +00:00
2019-11-02 11:12:46 +00:00
1. Installer le binaire **starship** :
2019-10-04 08:57:43 +00:00
2019-11-02 11:12:46 +00:00
** [Télécharger les archives des binaires précompilés ](https://github.com/starship/starship/releases )** si vous n'utilisez pas une des plateformes citées ci-dessous.
2019-10-04 08:57:43 +00:00
#### Homebrew
```sh
$ brew install starship
```
2019-11-02 11:12:46 +00:00
#### Rust (v1.38 ou plus)
2019-10-04 08:57:43 +00:00
```sh
$ cargo install starship
```
#### Arch Linux (AUR)
2019-11-02 11:12:46 +00:00
Starship is disponible sur AUR sous le nom `starship` . Installer le avec `yay` ou votre client AUR favori.
2019-10-04 08:57:43 +00:00
```sh
$ yay -S starship
```
2019-11-02 11:12:46 +00:00
#### Nix (non stable)
2019-10-04 08:57:43 +00:00
```sh
$ nix-env --install starship
```
#### Termux
```sh
$ pkg install starship
```
1. Add the init script to your shell's config file:
#### Bash
Add the following to the end of `~/.bashrc` :
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
Add the following to the end of `~/.config/fish/config.fish` :
```sh
# ~/.config/fish/config.fish
2019-10-29 03:48:45 +00:00
starship init fish | source
2019-10-04 08:57:43 +00:00
```
#### Zsh
Add the following to the end of `~/.zshrc` :
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
2019-10-21 14:42:08 +00:00
#### Powershell
Add the following to the end of `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix):
```sh
# ~\Documents\PowerShell\Profile.ps1
Invoke-Expression (& starship init powershell)
```