summaryrefslogtreecommitdiffstats
path: root/docs/fr-FR
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-10-21 23:42:08 +0900
committerGitHub <noreply@github.com>2019-10-21 23:42:08 +0900
commitbd79672f484f79ab2edad0c8d3c990f8db4bee45 (patch)
treec182f5e791c196ca2611e6199d63c8242b83959d /docs/fr-FR
parent86bb923303775215870699921bb8b619cd82af38 (diff)
docs(i18n): Update Crowdin translations (#517)
- Finish translations for Traditional Chinese
Diffstat (limited to 'docs/fr-FR')
-rw-r--r--docs/fr-FR/README.md16
-rw-r--r--docs/fr-FR/advanced-config/README.md56
-rw-r--r--docs/fr-FR/config/README.md64
-rw-r--r--docs/fr-FR/guide/README.md101
4 files changed, 140 insertions, 97 deletions
diff --git a/docs/fr-FR/README.md b/docs/fr-FR/README.md
index 7cd8a78c5..6fea1bfd5 100644
--- a/docs/fr-FR/README.md
+++ b/docs/fr-FR/README.md
@@ -1,14 +1,14 @@
---
home: true
heroImage: /logo.svg
-actionText: Get Started →
+actionText: Commencez →
actionLink: /guide/
-footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+footer: ISC licencié | Copyright © 2019-present Starship Contributors
---
<div class="features">
<div class="feature">
- <h2>Compatibility First</h2>
+ <h2>Compatibilité d'abord</h2>
<p>Works on the most common shells on the most common operating systems. Use it everywhere!</p>
</div>
<div class="feature">
@@ -105,3 +105,13 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
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):
+
+ ```sh
+ # ~\Documents\PowerShell\Profile.ps1
+ Invoke-Expression (&starship init powershell)
+ ```
diff --git a/docs/fr-FR/advanced-config/README.md b/docs/fr-FR/advanced-config/README.md
index d5d27031f..95b6df04c 100644
--- a/docs/fr-FR/advanced-config/README.md
+++ b/docs/fr-FR/advanced-config/README.md
@@ -1,18 +1,18 @@
-# Advanced Configuration
+# Configuration avancée
-While Starship is a versatile shell, sometimes you need to do more than edit `starship.toml` to get it to do certain things. This page details some of the more advanced configuration techniques used in starship.
+Alors que Starship est un shell polyvalent, vous devez parfois faire plus que d'éditer `starship.toml` pour le faire les choses. Cette page détaille quelques techniques de configuration avancées qu'on peut utiliser dans starship.
::: warning
-The configurations in this section are subject to change in future releases of Starship.
+Les configurations de cette section sont sujettes à modification dans les versions à venir de Starship.
:::
-## Custom pre-prompt and pre-execution Commands in Bash
+## Commandes pré-commande et pré-exécution personnalisées en Bash
-Bash does not have a formal preexec/precmd framework like most other shells. Because of this, it is difficult to provide fully customizable hooks in `bash`. However, Starship does give you limited ability to insert your own functions into the prompt-rendering procedure:
+Bash n'a pas de cadre officiel préexec/précmd comme la plupart des autres shell du commande. C'est pourquoi il est difficile de fournir des crochets entièrement personnalisables dans `bash`. Cependant, Starship vous donne une capacité limitée à insérer vos propres fonctions dans la procédure de rendu commande :
-- To run a custom function right before the prompt is drawn, define a new function and then assign its name to `starship_precmd_user_func`. For example, to draw a rocket before the prompt, you would do
+- Pour exécuter une fonction personnalisée juste avant que commande soit dessinée, définissez une nouvelle fonction et assignez son nom à `starship_precmd_user_func`. Par exemple, pour dessiner une fusée avant la commande, vous feriez
```bash
function blastoff(){
@@ -21,47 +21,47 @@ function blastoff(){
starship_precmd_user_func="blastoff"
```
-- To run a custom function right before a command runs, you can use the [`DEBUG` trap mechanism](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). However, you **must** trap the DEBUG signal *before* initializing Starship! Starship can preserve the value of the DEBUG trap, but if the trap is overwritten after starship starts up, some functionality will break.
+- Pour exécuter une fonction personnalisée juste avant l'exécution d'une commande, vous pouvez utiliser le [` DEBUG` mécanisme d'interruption ](https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/). Cependant, vous **devez** pièger le signal DEBUG *avant* initialisation du Starship ! Starship peut préserver la valeur du piège DEBUG, mais si le piège est écrasé après le démarrage de Starship, certaines fonctionnalités vont casser.
```bash
function blastoff(){
echo "🚀"
}
-trap blastoff DEBUG # Trap DEBUG *before* running starship
+trap blastoff DEBUG # Pièger DEBUG *avant* l'initiation de starship
eval $(starship init bash)
```
-## Change Window Title
+## Modifier le style des fenêtres commande
-Some shell prompts will automatically change the window title for you (e.g. to reflect your working directory). Fish even does it by default. Starship does not do this, but it's fairly straightforward to add this functionality to `bash` or `zsh`.
+Certaines commandes du shell changeront automatiquement le titre de la fenêtre (par exemple, refléter votre répertoire de travail). Fish le fait par défaut. Starship ne le fait pas, mais il est assez simple d'ajouter cette fonctionnalité à `bash` ou `zsh`.
-First, define a window title change function (identical in bash and zsh):
+Tout d'abord, définir une fonction de changement de titre de fenêtre (identique en bash et zsh) :
```bash
-function set_win_title(){
- echo -ne "\033]0; YOUR_WINDOW_TITLE_HERE \007"
+function set_titre_fenetre(){
+ echo -ne "\033]0; TON_TITRE_FENETRE_ICI \007"
}
```
-You can use variables to customize this title (`$USER`, `$HOSTNAME`, and `$PWD` are popular choices).
+Vous pouvez utiliser des variables pour personnaliser ce titre (`$USER`, `$HOSTNAME`, et `$PWD` sont des choix populaires).
-In `bash`, set this function to be the precmd starship function:
+Dans `bash`, définissez cette fonction comme la fonction précmd Starship :
```bash
-starship_precmd_user_func="set_win_title"
+starship_precmd_user_func="set_titre_gagnante"
```
-In `zsh`, add this to the `precmd_functions` array:
+Dans `zsh`, ajoutez ceci au tableau `precmd_functions` :
```bash
-precmd_functions+=(set_win_title)
+précmd_functions+=(set_titre_gagnant)
```
-If you like the result, add these lines to your shell configuration file (`~/.bashrc` or `~/.zsrhc`) to make it permanent.
+Si vous aimez le résultat, ajoutez ces lignes à votre fichier de configuration de shell (`~/.bashrc` ou `~/.zsrhc`) pour le rendre permanent.
-## Style Strings
+## Chaînes de style
-Style strings are a list of words, separated by whitespace. The words are not case sensitive (i.e. `bold` and `BoLd` are considered the same string). Each word can be one of the following:
+Les chaînes de style sont une liste de mots, séparés par des espaces blancs. Les mots ne sont pas sensibles à la casse (` bold ` et ` boLd ` sont considérés comme la même string). Chaque mot peut être l'un des suivants :
- `bold`
- `underline`
@@ -71,14 +71,14 @@ Style strings are a list of words, separated by whitespace. The words are not ca
- `<color>`
- `none`
-where `<color>` is a color specifier (discussed below). `fg:<color>` and `<color>` currently do the same thing , though this may change in the future. The order of words in the string does not matter.
+où `<color>` est un spécificateur de couleur (discuté ci-dessous). `fg:<color>` et `<color>` font actuellement la même chose , bien que cela puisse changer dans le futur. L'ordre des mots dans le string n'a pas d'importance.
-The `none` token overrides all other tokens in a string, so that e.g. `fg:red none fg:blue` will still create a string with no styling. It may become an error to use `none` in conjunction with other tokens in the future.
+Le jeton ` none ` remplace tous les autres jetons d'une string, de sorte que, par exemple, ` fg: red none fg: blue ` créera toujours une string sans style. Il peut devenir une erreur d'utiliser `none` en conjonction avec d'autres jetons dans le futur.
-A color specifier can be one of the following:
+Un spécificateur de couleur peut être l'un des éléments suivants :
- - One of the standard terminal colors: `black`, `red`, `green`, `blue`, `yellow`, `purple`, `cyan`, `white`. You can optionally prefix these with `bright-` to get the bright version (e.g. `bright-white`).
- - A `#` followed by a six-digit hexadecimal number. This specifies an [RGB color hex code](https://www.w3schools.com/colors/colors_hexadecimal.asp).
- - A number between 0-255. This specifies an [8-bit ANSI Color Code](https://i.stack.imgur.com/KTSQa.png).
+ - Une des couleurs standard du terminal : `black`, `red`, `green`, `blue`, `yellow`, `purple`, `cyan`, `white`. Vous pouvez éventuellement les préfixer avec `bright-` pour obtenir la version lumineuse (par exemple `bright-white`).
+ - Un `#` suivi d'un nombre hexadécimal de six chiffres. Ceci spécifie un [ Code hexadécimal de couleur RVB ](https://www.w3schools.com/colors/colors_hexadecimal.asp).
+ - Un nombre entre 0-255. Ceci spécifie un [code de couleur ANSI 8 bits](https://i.stack.imgur.com/KTSQa.png).
-If multiple colors are specified for foreground/background, the last one in the string will take priority.
+Si plusieurs couleurs sont spécifiées pour le premier plan/arrière-plan, la dernière dans le string prendra la priorité.
diff --git a/docs/fr-FR/config/README.md b/docs/fr-FR/config/README.md
index 99c572692..358eba519 100644
--- a/docs/fr-FR/config/README.md
+++ b/docs/fr-FR/config/README.md
@@ -1,39 +1,39 @@
# Configuration
-::: tip
+::: remarque
-🔥 Configuration is currently being worked on. Many new configuration options will be available in coming releases.
+🔥 La configuration est en train d'être travaillée. Beaucoup de nouvelles options de configuration seront disponibles dans les prochaines versions.
:::
-To get started configuring starship, create the following file: `~/.config/starship.toml`.
+Pour commencer à configurer starship, créez le fichier suivant : `~/.config/starship.toml`.
```shell
$ touch ~/.config/starship.toml
```
-All configuration for starship is done in this [TOML](https://github.com/toml-lang/toml) file:
+Toute la configuration de starship est effectuée dans ce fichier [TOML](https://github.com/toml-lang/toml) :
```toml
-# Don't print a new line at the start of the prompt
+# N'écrivez pas une nouvelle ligne au début de la console
add_newline = false
-# Replace the "❯" symbol in the prompt with "➜"
-[character] # The name of the module we are configuring is "character"
-symbol = "➜" # The "symbol" segment is being set to "➜"
+# Remplacez le symbole "❯" dans la console avec "➜"
+[character] # Le nom du module que nous configurons est "character"
+symbol = "➜" # Le segment "symbol" est mis comme "➜"
-# Disable the package module, hiding it from the prompt completely
+# Désactivez le module package, le cachant complètement de la console
[package]
disabled = true
```
-### Terminology
+### Terminologie
-**Module**: A component in the prompt giving information based on contextual information from your OS. For example, the "nodejs" module shows the version of NodeJS that is currently installed on your computer, if your current directory is a NodeJS project.
+**Module**: Un composant dans l'invite donnant des informations basées sur des informations contextuelles à propos de votre Système d'Exploitation. Par exemple, le module "nodejs" montre la version de NodeJS qui est actuellement installée sur votre ordinateur, si votre répertoire actuel est un projet NodeJS.
-**Segment**: Smaller sub-components that compose a module. For example, the "symbol" segment in the "nodejs" module contains the character that is shown before the version number (⬢ by default).
+**Segment**: Sous-composants plus petits qui composent un module. Par exemple, le segment "symbol" du module "nodejs" contient le caractère qui est affiché avant le numéro de version (⬢ par défaut).
-Here is the representation of the node module. In the following example, "symbol" and "version" are segments within it. Every module also has a prefix and suffix that are the default terminal color.
+Voici la représentation du module node. Dans l'exemple suivant, "symbol" et "version" sont des segments dans celui-ci. Chaque module a également un préfixe et un suffixe qui sont la couleur par défaut du terminal.
```
[prefix] [symbol] [version] [suffix]
@@ -112,13 +112,13 @@ prompt_order = [
## AWS
-The `aws` module shows the current AWS profile. This is based on the `AWS_PROFILE` env var.
+The `aws` module shows the current AWS region and profile. This is based on `AWS_REGION`, `AWS_DEFAULT_REGION`, and `AWS_PROFILE` env var with `~/.aws/config` file.
### Options
| Variable | Default | Description |
| ---------- | --------------- | ---------------------------------------------------------- |
-| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. |
+| `symbol` | `"☁️ "` | The symbol used before displaying the current AWS profile. |
| `style` | `"bold yellow"` | The style for the module. |
| `disabled` | `false` | Disables the `AWS` module. |
@@ -398,7 +398,7 @@ The `git_branch` module shows the active branch of the repo in your current dire
[git_branch]
symbol = "🌱 "
-truncation_length = "4"
+truncation_length = 4
truncation_symbol = ""
```
@@ -508,13 +508,14 @@ The `hostname` module shows the system hostname.
### Options
-| Variable | Default | Description |
-| ---------- | --------------------- | ---------------------------------------------------- |
-| `ssh_only` | `true` | Only show hostname when connected to an SSH session. |
-| `prefix` | `""` | Prefix to display immediately before the hostname. |
-| `suffix` | `""` | Suffix to display immediately after the hostname. |
-| `style` | `"bold dimmed green"` | The style for the module. |
-| `disabled` | `false` | Disables the `hostname` module. |
+| Variable | Default | Description |
+| ---------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
+| `ssh_only` | `true` | Only show hostname when connected to an SSH session. |
+| `prefix` | `""` | Prefix to display immediately before the hostname. |
+| `suffix` | `""` | Suffix to display immediately after the hostname. |
+| `trim_at` | `"."` | String that the hostname is cut off at, after the first match. `"."` will stop after the first dot. `""` will disable any truncation |
+| `style` | `"bold dimmed green"` | The style for the module. |
+| `disabled` | `false` | Disables the `hostname` module. |
### Example
@@ -525,6 +526,7 @@ The `hostname` module shows the system hostname.
ssh_only = false
prefix = "⟪"
suffix = "⟫"
+trim_at = ".companyname.com"
disabled = false
```
@@ -642,14 +644,14 @@ This module is disabled by default. To enable it, set `disabled` to `false` in y
### Options
-| Variable | Default | Description |
-| ----------------- | ------------------------ | ------------------------------------------------------------- |
-| `show_percentage` | `false` | Display memory usage as a percentage of the available memory. |
-| `show_swap` | when total swap non-zero | Display swap usage. |
-| `threshold` | `75` | Hide the memory usage unless it exceeds this percentage. |
-| `symbol` | `"🐏 "` | The symbol used before displaying the memory usage. |
-| `style` | `"bold dimmed white"` | The style for the module. |
-| `disabled` | `true` | Disables the `memory_usage` module. |
+| Variable | Default | Description |
+| ----------------- | --------------------- | ------------------------------------------------------------- |
+| `show_percentage` | `false` | Display memory usage as a percentage of the available memory. |
+| `show_swap` | `true` | Display swap usage if total swap is non-zero. |
+| `threshold` | `75` | Hide the memory usage unless it exceeds this percentage. |
+| `symbol` | `"🐏 "` | The symbol used before displaying the memory usage. |
+| `style` | `"bold dimmed white"` | The style for the module. |
+| `disabled` | `true` | Disables the `memory_usage` module. |
### Example
diff --git a/docs/fr-FR/guide/README.md b/docs/fr-FR/guide/README.md
index f71d6b1e3..281098974 100644
--- a/docs/fr-FR/guide/README.md
+++ b/docs/fr-FR/guide/README.md
@@ -15,10 +15,13 @@
><img
src="https://repology.org/badge/tiny-repos/starship.svg"
alt="Packaging status" /></a
-><br /><a href="#contributors"
- ><img
- src="https://badgen.net/badge/all%20contributors/35/orange"
+><br />
+ <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
+ <a href="#contributors">
+ <img
+ src="https://badgen.net/badge/all%20contributors/42/orange"
alt="All Contributors" /></a>
+ <!-- ALL-CONTRIBUTORS-BADGE:END -->
<a href="https://discord.gg/8Jzqu3T"
><img
src="https://badgen.net/badge/chat/on%20discord/7289da"
@@ -27,7 +30,7 @@
<h4 align="center">
<br />
- <a href="https://starship.rs">Website</a>
+ <a href="https://starship.rs">Site web</a>
·
<a href="#-installation">Installation</a>
·
@@ -37,7 +40,7 @@
<a href="https://github.com/starship/starship/blob/master/README.md"
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-us.png" alt="English" /></a>
&#0020;
- <a href="https://github.com/starship/starship/blob/master/translations/README.ja.md"
+ <a href="https://github.com/starship/starship/blob/master/docs/ja-JP/guide/README.md"
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-jp.png" alt="日本語" /></a>
&#0020;
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
@@ -67,43 +70,44 @@
<br>
</p>
-## 🍬 Features
-
-- Prompt character turns red if the last command exits with non-zero code
-- Current username if not the same as the logged-in user
-- Current Java version(`☕`)
-- Current Node.js version(`⬢`)
-- Current Rust version (`🦀`)
-- Current Ruby version (`💎`)
-- Current Python version (`🐍`)
-- Current Go version (`🐹`)
-- Nix-shell environment detection
-- Print an environment variable
-- Current version of package in current directory (`📦`)
+## 🍬 Fonctionnalités
+
+- Le symbole de prompt devient rouge si la dernière commande a retournée un code différent de zéro
+- Affiche le nom de l'utilisateur courant s'il est différent de celui connecté
+- Version actuelle de Java (`☕`)
+- Version actuelle de Node.js (`⬢`)
+- Version actuelle de Rust (`🦀`)
+- Version actuelle de Ruby (`💎`)
+- Version actuelle de Python (`🐍`)
+- Version actuelle de Go (`🐹`)
+- Détection de l'environnement Nix-shell
+- Affiche une variable d'environnement
+- Version actuelle du paquet dans le répertoire courant (`📦`)
- npm (Node.js)
- cargo (Rust)
- poetry (Python)
-- Current battery level and status
-- Current Git branch and rich repo status:
- - `=` — conflicting changes
- - `⇡` — ahead of remote branch
- - `⇣` — behind of remote branch
- - `⇕` — diverged changes
- - `?` — untracked changes
- - `$` — stashed changes
- - `!` — modified files
- - `+` — added files
- - `»` — renamed files
- - `✘` — deleted files
-- Execution time of the last command if it exceeds the set threshold
-- Indicator for jobs in the background (`✦`)
-- Current Kubernetes Cluster and Namespace (`☸`)
+- Niveau et état actuels de la batterie
+- Branche Git actuelle et affichage "riche" du statut du dépôt:
+ - `=` — Conflits dans les changements
+ - `⇡` — En avance sur la branche distante
+ - `⇣` — En retard sur la branche distante
+ - `⇕` — Changements divergeant
+ - `?` — Changements non-suivis
+ - `$` — Changements remisés
+ - `!` — Fichiers modifiés
+ - `+` — Fichiers ajoutés
+ - `»` — Fichiers renommés
+ - `✘` — Fichiers supprimés
+- Temps d'exécution de la dernière commande si elle a excédée la limite
+- Indicateur pour les tâches en arrière-plan (`✦`)
+- Cluster et namespace Kubernetes actuels (`☸`)
+- Current AWS profile (`☁️`)
## 🚀 Installation
-### Prerequisites
+### Pré-requis
-- A [Powerline font](https://github.com/powerline/fonts) installed and enabled in your terminal (for example, try [Fira Code](https://github.com/tonsky/FiraCode)).
+- Une [police d'écriture Powerline](https://github.com/powerline/fonts) installée et activée dans votre terminal (Par exemple, essayez [Fira Code](https://github.com/tonsky/FiraCode)).
### Getting Started
@@ -148,6 +152,17 @@
$ pkg install starship
```
+
+ #### Other x86-64 Linux Platforms
+
+ Download a prebuilt binary and place in /usr/local/bin/
+
+ ```sh
+ $ wget -q --show-progress https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz
+ $ tar xvf starship-x86_64-unknown-linux-gnu.tar.gz
+ $ sudo mv starship /usr/local/bin/
+ ```
+
1. Add the init script to your shell's config file:
@@ -183,6 +198,16 @@
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):
+
+ ```sh
+ # ~\Documents\PowerShell\Profile.ps1
+ Invoke-Expression (&starship init powershell)
+ ```
+
## 🔧 Configuration
For details on how to configure Starship, check out our [documentation](https://starship.rs/config/).
@@ -259,6 +284,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center"><a href="https://pt2121.github.io"><img src="https://avatars0.githubusercontent.com/u/616399?v=4" width="100px;" alt="(´⌣`ʃƪ)"/><br /><sub><b>(´⌣`ʃƪ)</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pt2121" title="Code">💻</a></td>
<td align="center"><a href="https://southcla.ws"><img src="https://avatars1.githubusercontent.com/u/1636971?v=4" width="100px;" alt="Barnaby Keene" /><br /><sub><b>Barnaby Keene</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=Southclaws" title="Code">💻</a></td>
<td align="center"><a href="http://keawade.io/"><img src="https://avatars2.githubusercontent.com/u/7308850?v=4" width="100px;" alt="Keith Wade" /><br /><sub><b>Keith Wade</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=keawade" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=keawade" title="Tests">⚠️</a></td>
+ <td align="center"><a href="https://github.com/LukeAI"><img src="https://avatars3.githubusercontent.com/u/43993778?v=4" width="100px;" alt="LukeAI" /><br /><sub><b>LukeAI</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=LukeAI" title="Documentation">📖</a></td>
+ <td align="center"><a href="https://github.com/zekesonxx"><img src="https://avatars1.githubusercontent.com/u/965509?v=4" width="100px;" alt="Zach Mertes" /><br /><sub><b>Zach Mertes</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=zekesonxx" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=zekesonxx" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=zekesonxx" title="Tests">⚠️</a></td>
+ <td align="center"><a href="https://github.com/davidkna"><img src="https://avatars2.githubusercontent.com/u/835177?v=4" width="100px;" alt="David Knaack" /><br /><sub><b>David Knaack</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=davidkna" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=davidkna" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=davidkna" title="Tests">⚠️</a></td>
+ </tr>
+ <tr>
+ <td align="center"><a href="https://github.com/CSumm"><img src="https://avatars1.githubusercontent.com/u/31711543?v=4" width="100px;" alt="Carl Summers" /><br /><sub><b>Carl Summers</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=CSumm" title="Documentation">📖</a></td>
</tr>
</table>