1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-21 10:29:01 +00:00
starship/docs/fr-FR/README.md

115 lines
2.5 KiB
Markdown
Raw Normal View History

---
home: true
heroImage: /logo.svg
2020-02-04 17:11:36 +00:00
heroText:
tagline: The cross-shell prompt for astronauts
actionText: Commencez →
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.
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.
---
<div class="center">
<video class="demo-video" muted autoplay loop playsinline>
<source src="/demo.webm" type="video/webm">
<source src="/demo.mp4" type="video/mp4">
</video>
</div>
### Installation
1. Installer le binaire **starship** :
2019-12-24 21:54:29 +00:00
#### Installer la dernière version
2019-12-24 21:54:29 +00:00
Avec Shell:
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
```
2019-12-24 21:54:29 +00:00
#### Installer via le gestionnaire de paquets
2019-12-24 21:54:29 +00:00
Avec [Homebrew](https://brew.sh/):
```sh
2019-12-24 21:54:29 +00:00
brew install starship
```
2020-02-04 17:11:36 +00:00
Avec [Scoop](https://scoop.sh):
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
```
2019-12-24 21:54:29 +00:00
1. Ajouter le script d'initialization à la fiche config de votre shell:
#### Bash
2019-12-24 21:54:29 +00:00
Ajouter ce qui suit à la fin de `~/.bashrc`:
```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`:
```sh
# ~/.config/fish/config.fish
starship init fish | source
```
#### Zsh
2019-12-24 21:54:29 +00:00
Ajouter ce qui suit à la fin de `~/.zshrc`:
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
#### 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):
```sh
# ~\Documents\PowerShell\Profile.ps1
2019-12-24 21:54:29 +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)
```