2019-10-04 08:57:43 +00:00
---
home: true
heroImage: /logo.svg
2020-02-04 17:11:36 +00:00
heroText:
2020-02-03 00:51:45 +00:00
tagline: The cross-shell prompt for astronauts
2019-10-21 14:42:08 +00:00
actionText: Commencez →
2020-02-03 00:51:45 +00:00
actionLink: ./guide/
2020-02-04 17:11:36 +00:00
features:
-
title: Compatibilité d'abord
details: Fonctionne sur tous les principaux shells et système d'exploitation. Utilisez-le partout !
-
title: Propulsé par Rust
details: Profiter de toute la rapidité et la securité de Rust, pour rendre votre prompt le plus rapide et fiable possible.
-
title: Personnalisable
details: Tous les petits détails sont personnalisable à votre goût, pour rendre votre prompt aussi léger ou complet que le vous souhaitez.
2019-10-21 14:42:08 +00:00
footer: ISC licencié | Copyright © 2019-present Starship Contributors
2020-02-04 17:11:36 +00:00
#Used for the description meta tag, for SEO
metaTitle: "Starship: Cross-Shell Prompt"
description: 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.
2019-10-04 08:57:43 +00:00
---
< 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-12-24 21:54:29 +00:00
#### Installer la dernière version
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
Avec Shell:
2019-10-04 08:57:43 +00:00
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
2019-10-04 08:57:43 +00:00
```
2019-12-24 21:54:29 +00:00
#### Installer via le gestionnaire de paquets
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
Avec [Homebrew ](https://brew.sh/ ):
2019-10-04 08:57:43 +00:00
```sh
2019-12-24 21:54:29 +00:00
brew install starship
2019-10-04 08:57:43 +00:00
```
2020-02-04 17:11:36 +00:00
Avec [Scoop ](https://scoop.sh ):
2019-10-04 08:57:43 +00:00
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
2019-10-04 08:57:43 +00:00
```
2019-12-24 21:54:29 +00:00
1. Ajouter le script d'initialization à la fiche config de votre shell:
2019-10-04 08:57:43 +00:00
#### Bash
2019-12-24 21:54:29 +00:00
Ajouter ce qui suit à la fin de `~/.bashrc` :
2019-10-04 08:57:43 +00:00
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
2019-12-24 21:54:29 +00:00
Ajoute ce qui suit à la fin de `~/.config/fish/config.fish` :
2019-10-04 08:57:43 +00:00
```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
2019-12-24 21:54:29 +00:00
Ajouter ce qui suit à la fin de `~/.zshrc` :
2019-10-04 08:57:43 +00:00
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
2019-10-21 14:42:08 +00:00
#### Powershell
2019-12-24 21:54:29 +00:00
Ajouter ce qui suit à la fin de `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (ou `~/.config/powershell/Microsoft.PowerShell_profile.ps1` sur -Nix):
2019-10-21 14:42:08 +00:00
```sh
# ~\Documents\PowerShell\Profile.ps1
2019-12-24 21:54:29 +00:00
2019-10-21 14:42:08 +00:00
Invoke-Expression (& starship init powershell)
```
2019-12-24 21:54:29 +00:00
#### Ion
Ajouter ce qui suit à la fin de `~/.config/ion/initrc` :
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```