mirror of
https://github.com/starship/starship.git
synced 2024-11-22 16:23:17 +01:00
docs(i18n): Update translations (#908)
This commit is contained in:
parent
54acc2cdc3
commit
3271b586f4
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Um mit der Konfiguration von Starship zu beginnen, musst du die folgende Datei erstellen: `~/.config/starship.toml`.
|
Um mit der Konfiguration von Starship zu beginnen, musst du die folgende Datei erstellen: `~/.config/starship.toml`.
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
Sie können den Pfad zur `starship.toml` mit der `STARSHIP_CONFIG` Umgebungsvariable ändern:
|
Sie können den Pfad zur `starship.toml` mit der `STARSHIP_CONFIG` Umgebungsvariable ändern:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -253,7 +255,7 @@ use_symbol_for_status = true
|
|||||||
|
|
||||||
## Befehlsdauer
|
## Befehlsdauer
|
||||||
|
|
||||||
Das `cmd_duration` Modul zeigt an wie lange der letzte Befehl ausgeführt wurde. Das Modul wird nur angezeigt wenn der letzte Befehl länger als zwei Sekunden ausgeführt wurde. Mit der `min_time` Option kann die Zeit eingestellt werden ab der <0>cmd_duration</0> angezeigt wird.
|
Das `cmd_duration` Modul zeigt an wie lange der letzte Befehl ausgeführt wurde. Das Modul wird nur angezeigt wenn der letzte Befehl länger als zwei Sekunden ausgeführt wurde. Mit der `min_time` Option kann die Zeit eingestellt werden ab der `cmd_duration` angezeigt wird.
|
||||||
|
|
||||||
::: warning Nicht die DEBUG-trap in der Bash hooken
|
::: warning Nicht die DEBUG-trap in der Bash hooken
|
||||||
|
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. Das Modul wird nur dann angezeigt, wenn eine der folgenden Bedingungen zutrifft:
|
||||||
|
|
||||||
|
- Das aktuelle Verzeichnis enthält eine `elm.json`-Datei
|
||||||
|
- Das aktuelle Verzeichnis enthält eine `elm-package.json`-Datei
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### Optionen
|
||||||
|
|
||||||
|
| Variable | Standardwert | Beschreibung |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | Stil für dieses Modul. |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### Beispiel
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## Umgebungsvariablen
|
## Umgebungsvariablen
|
||||||
|
|
||||||
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
||||||
@ -597,7 +626,7 @@ The `haskell` module shows the currently installed version of Haskell Stack vers
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial Branch
|
## Mercurial Branch
|
||||||
@ -811,9 +840,34 @@ icon = " "
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. Das Modul wird nur dann angezeigt, wenn eine der folgenden Bedingungen zutrifft:
|
||||||
|
|
||||||
|
- Das aktuelle Verzeichnis enthält eine `shard.yml`-Datei
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### Optionen
|
||||||
|
|
||||||
|
| Variable | Standardwert | Beschreibung |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | Stil für dieses Modul. |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### Beispiel
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
Das `nodejs` Modul zeigt die derzeit installierte Version von NodeJS. Das Modul wird gezeigt, wenn mindestens einer der folgenden Punkte erfüllt ist:
|
Das `nodejs` Modul zeigt die derzeit installierte Version von NodeJS. Das Modul wird nur dann angezeigt, wenn eine der folgenden Bedingungen zutrifft:
|
||||||
|
|
||||||
- Das aktuelle Verzeichnis enthält eine `package.json`-Datei
|
- Das aktuelle Verzeichnis enthält eine `package.json`-Datei
|
||||||
- Das aktuelle Verzeichnis enthält ein `node_modules`-Verzeichnis
|
- Das aktuelle Verzeichnis enthält ein `node_modules`-Verzeichnis
|
||||||
@ -960,7 +1014,7 @@ Das `rust` Modul zeigt die derzeit installierte Version von Rust an. Das Modul w
|
|||||||
|
|
||||||
### Optionen
|
### Optionen
|
||||||
|
|
||||||
| Variable | Standardwert | Beschreibung |
|
| Variable | Standartwert | Beschreibung |
|
||||||
| ---------- | ------------ | ----------------------------------------------- |
|
| ---------- | ------------ | ----------------------------------------------- |
|
||||||
| `symbol` | `"🦀 "` | Symbol das vor der Rust-Version angezeigt wird. |
|
| `symbol` | `"🦀 "` | Symbol das vor der Rust-Version angezeigt wird. |
|
||||||
| `style` | `"bold red"` | Stil für dieses Modul. |
|
| `style` | `"bold red"` | Stil für dieses Modul. |
|
||||||
@ -1012,7 +1066,7 @@ Dieses Modul ist standardmäßig deaktiviert. Setze in deiner Konfiguration `dis
|
|||||||
|
|
||||||
### Optionen
|
### Optionen
|
||||||
|
|
||||||
| Variable | Standartwert | Beschreibung |
|
| Variable | Standardwert | Beschreibung |
|
||||||
| ----------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
| ----------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `use_12hr` | `false` | Aktiviert die Formatierung der Uhrzeit im 12-Stunden-Format. |
|
| `use_12hr` | `false` | Aktiviert die Formatierung der Uhrzeit im 12-Stunden-Format. |
|
||||||
| `format` | Siehe unten | Das Format zum Anzeigen der Uhrzeit in [chrono-Formatierung](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html). |
|
| `format` | Siehe unten | Das Format zum Anzeigen der Uhrzeit in [chrono-Formatierung](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html). |
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="Auf Discord chatten" /></a>
|
alt="Auf Discord chatten" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="Alle Mitwirkenden"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="Alle Mitwirkenden"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,6 +73,7 @@
|
|||||||
## 🍬 Features
|
## 🍬 Features
|
||||||
|
|
||||||
- Anzeigetext wird rot wenn der letzte Befehl mit einem Exit-code größer null terminiert
|
- Anzeigetext wird rot wenn der letzte Befehl mit einem Exit-code größer null terminiert
|
||||||
|
- Current Elm version (`🌳`)
|
||||||
- Derzeitige Go-Version (`🐹`)
|
- Derzeitige Go-Version (`🐹`)
|
||||||
- Current Haskell version (`λ`)
|
- Current Haskell version (`λ`)
|
||||||
- Derzeitige Java-Version (`☕`)
|
- Derzeitige Java-Version (`☕`)
|
||||||
@ -82,6 +83,7 @@
|
|||||||
- Derzeitige Ruby-Version (`💎`)
|
- Derzeitige Ruby-Version (`💎`)
|
||||||
- Derzeitige Rust-Version (`🦀`)
|
- Derzeitige Rust-Version (`🦀`)
|
||||||
- Derzeitige .NET-Version (`•NET`)
|
- Derzeitige .NET-Version (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- Version des Paketmanagers im derzeitigen Pfad (`📦`)
|
- Version des Paketmanagers im derzeitigen Pfad (`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
@ -249,7 +251,7 @@ Danke an diese wunderbaren Leute ([emoji-Schlüssel](https://allcontributors.org
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@ Danke an diese wunderbaren Leute ([emoji-Schlüssel](https://allcontributors.org
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
To get started configuring starship, create the following file: `~/.config/starship.toml`.
|
To get started configuring starship, create the following file: `~/.config/starship.toml`.
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. The module will be shown if any of the following conditions are met:
|
||||||
|
|
||||||
|
- The current directory contains a `elm.json` file
|
||||||
|
- The current directory contains a `elm-package.json` file
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | The style for the module. |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## Environment Variable
|
## Environment Variable
|
||||||
|
|
||||||
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
||||||
@ -597,7 +626,7 @@ The `haskell` module shows the currently installed version of Haskell Stack vers
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial Branch
|
## Mercurial Branch
|
||||||
@ -812,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. The module will be shown if any of the following conditions are met:
|
||||||
|
|
||||||
|
- The current directory contains a `shard.yml` file
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | The style for the module. |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met:
|
The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met:
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="Chat en Discord" /></a>
|
alt="Chat en Discord" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="Todos los colaboradores"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="Todos los colaboradores"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,6 +73,7 @@
|
|||||||
## 🍬 Características
|
## 🍬 Características
|
||||||
|
|
||||||
- Los caracteres de la prompt se colorean de rojo si el último comando termina con un código distinto a cero
|
- Los caracteres de la prompt se colorean de rojo si el último comando termina con un código distinto a cero
|
||||||
|
- Current Elm version (`🌳`)
|
||||||
- Versión actual de Go (`🐹`)
|
- Versión actual de Go (`🐹`)
|
||||||
- Current Haskell version (`λ`)
|
- Current Haskell version (`λ`)
|
||||||
- Versión actual de Java (`☕`)
|
- Versión actual de Java (`☕`)
|
||||||
@ -82,6 +83,7 @@
|
|||||||
- Versión actual de Ruby (`💎`)
|
- Versión actual de Ruby (`💎`)
|
||||||
- Versión actual de Rust (`🦀`)
|
- Versión actual de Rust (`🦀`)
|
||||||
- Versión actual de .NET (`•NET`)
|
- Versión actual de .NET (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- Versión actual del paquete en el directorio actual (`📦`)
|
- Versión actual del paquete en el directorio actual (`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
@ -249,7 +251,7 @@ Los agradecimientos van a estas maravillosas personas ([clave emoji](https://all
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@ Los agradecimientos van a estas maravillosas personas ([clave emoji](https://all
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Pour commencer à configurer starship, créez le fichier suivant : `~/.config/starship.toml`.
|
Pour commencer à configurer starship, créez le fichier suivant : `~/.config/starship.toml`.
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. The module will be shown if any of the following conditions are met:
|
||||||
|
|
||||||
|
- The current directory contains a `elm.json` file
|
||||||
|
- The current directory contains a `elm-package.json` file
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | The style for the module. |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## Environment Variable
|
## Environment Variable
|
||||||
|
|
||||||
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
The `env_var` module displays the current value of a selected environment variable. The module will be shown only if any of the following conditions are met:
|
||||||
@ -597,7 +626,7 @@ The `haskell` module shows the currently installed version of Haskell Stack vers
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial Branch
|
## Mercurial Branch
|
||||||
@ -812,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. The module will be shown if any of the following conditions are met:
|
||||||
|
|
||||||
|
- The current directory contains a `shard.yml` file
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
| Variable | Default | Description |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | The style for the module. |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met:
|
The `nodejs` module shows the currently installed version of NodeJS. The module will be shown if any of the following conditions are met:
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="Discuter sur Discord" /></a>
|
alt="Discuter sur Discord" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="Tous les contributeurs"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="Tous les contributeurs"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,6 +73,7 @@
|
|||||||
## 🍬 Fonctionnalités
|
## 🍬 Fonctionnalités
|
||||||
|
|
||||||
- Le symbole de prompt devient rouge si la dernière commande a retourné un code différent de zéro
|
- Le symbole de prompt devient rouge si la dernière commande a retourné un code différent de zéro
|
||||||
|
- Current Elm version (`🌳`)
|
||||||
- Version actuelle de Go (`🐹`)
|
- Version actuelle de Go (`🐹`)
|
||||||
- Current Haskell version (`λ`)
|
- Current Haskell version (`λ`)
|
||||||
- Version actuelle de Java (`☕`)
|
- Version actuelle de Java (`☕`)
|
||||||
@ -82,6 +83,7 @@
|
|||||||
- Version actuelle de Ruby (`💎`)
|
- Version actuelle de Ruby (`💎`)
|
||||||
- Version actuelle de Rust (`🦀`)
|
- Version actuelle de Rust (`🦀`)
|
||||||
- Version actuelle de .NET (`•NET`)
|
- Version actuelle de .NET (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- Version actuelle du paquet dans le répertoire courant (`📦`)
|
- Version actuelle du paquet dans le répertoire courant (`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
@ -249,7 +251,7 @@ Merci à ces personnes merveilleuses ([clé emojis](https://allcontributors.org/
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@ Merci à ces personnes merveilleuses ([clé emojis](https://allcontributors.org/
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Starshipの設定を開始するには、`~/.config/starship.toml` ファイルを作成します。
|
Starshipの設定を開始するには、`~/.config/starship.toml` ファイルを作成します。
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
`STARSHIP_CONFIG` 環境変数を使用して、デフォルトの`starship.toml` ファイルの場所を変更できます。
|
`STARSHIP_CONFIG` 環境変数を使用して、デフォルトの`starship.toml` ファイルの場所を変更できます。
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -190,8 +192,7 @@ discharging_symbol = "💀"
|
|||||||
|
|
||||||
### バッテリーの表示
|
### バッテリーの表示
|
||||||
|
|
||||||
`display</ 0> オプションを使用して、バッテリーインジケーターを表示するタイミング(閾値)と外観(スタイル)を定義します。
|
`display` オプションを使用して、バッテリーインジケーターを表示するタイミング(閾値)と外観(スタイル)を定義します。 `display` が提供されない場合、 デフォルトは次のとおりです。
|
||||||
<code>display` が提供されない場合、 デフォルトは次のとおりです。
|
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[[battery.display]]
|
[[battery.display]]
|
||||||
@ -377,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
`elm`モジュールは、現在インストールされているElmのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
||||||
|
|
||||||
|
- カレントディレクトリに`elm.json`ファイルが含まれている
|
||||||
|
- カレントディレクトリに`elm-package.json`ファイルが含まれている
|
||||||
|
- カレントディレクトリに`elm-stuff`フォルダが含まれている
|
||||||
|
- カレントディレクトリに`*.elm`ファイルが含まれている
|
||||||
|
|
||||||
|
### オプション
|
||||||
|
|
||||||
|
| 変数 | デフォルト | 説明 |
|
||||||
|
| ---------- | ------------- | -------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | Elmのバージョンを表示する前に使用される記号です。 |
|
||||||
|
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
|
||||||
|
| `disabled` | `false` | `elm`モジュールを無効にします。 |
|
||||||
|
|
||||||
|
|
||||||
|
### 設定例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## 環境変数
|
## 環境変数
|
||||||
|
|
||||||
`env_var`モジュールは、選択された環境変数の現在の値を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
`env_var`モジュールは、選択された環境変数の現在の値を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
||||||
@ -598,7 +626,7 @@ The `haskell` module shows the currently installed version of Haskell Stack vers
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial ブランチ
|
## Mercurial ブランチ
|
||||||
@ -777,14 +805,13 @@ symbol = "🌟 "
|
|||||||
|
|
||||||
## メモリ使用量
|
## メモリ使用量
|
||||||
|
|
||||||
`memory_usage</ 0>モジュールは、現在のシステムメモリとスワップ使用量を示します。</p>
|
`memory_usage`モジュールは、現在のシステムメモリとスワップ使用量を示します。
|
||||||
|
|
||||||
<p spaces-before="0">デフォルトでは、システムスワップの合計がゼロ以外の場合、スワップ使用量が表示されます。</p>
|
デフォルトでは、システムスワップの合計がゼロ以外の場合、スワップ使用量が表示されます。
|
||||||
|
|
||||||
<p spaces-before="0">::: tip</p>
|
::: tip
|
||||||
|
|
||||||
<p spaces-before="0">このモジュールはデフォルトで無効になっています。
|
このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。
|
||||||
有効にするには、設定ファイルで<code>disabled`を`false`に設定します。
|
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
@ -814,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
`crystal`モジュールには、現在インストールされているCrystalのバージョンが表示されます。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
||||||
|
|
||||||
|
- カレントディレクトリに`shard.yml`ファイルが含まれている
|
||||||
|
- カレントディレクトリに`.cr`の拡張子のファイルが含まれている
|
||||||
|
|
||||||
|
### オプション
|
||||||
|
|
||||||
|
| 変数 | デフォルト | 説明 |
|
||||||
|
| ---------- | ------------ | ------------------------------ |
|
||||||
|
| `symbol` | `"🔮 "` | Crystalのバージョンを表示する前に使用される記号です。 |
|
||||||
|
| `style` | `"bold red"` | モジュールのスタイルです。 |
|
||||||
|
| `disabled` | `false` | `crystal`モジュールを無効にします。 |
|
||||||
|
|
||||||
|
### 設定例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
`nodejs`モジュールは、現在インストールされているNodeJSのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
`nodejs`モジュールは、現在インストールされているNodeJSのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="Chat on Discord" /></a>
|
alt="Chat on Discord" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="All Contributors"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="All Contributors"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,7 +73,8 @@
|
|||||||
## 🍬 機能
|
## 🍬 機能
|
||||||
|
|
||||||
- 最後のコマンドがゼロ以外のコードで終了すると、プロンプト文字が赤に変わります
|
- 最後のコマンドがゼロ以外のコードで終了すると、プロンプト文字が赤に変わります
|
||||||
- 現在の Go のバージョン (`🐹`)
|
- Current Elm version (`🌳`)
|
||||||
|
- 現在の Go バージョン (`🐹`)
|
||||||
- Current Haskell version (`λ`)
|
- Current Haskell version (`λ`)
|
||||||
- 現在の Java のバージョン (`☕`)
|
- 現在の Java のバージョン (`☕`)
|
||||||
- 現在の Node.js のバージョン (`⬢`)
|
- 現在の Node.js のバージョン (`⬢`)
|
||||||
@ -82,6 +83,7 @@
|
|||||||
- 現在の Ruby のバージョン (`💎`)
|
- 現在の Ruby のバージョン (`💎`)
|
||||||
- 現在の Rust のバージョン (`🦀`)
|
- 現在の Rust のバージョン (`🦀`)
|
||||||
- 現在の .NET のバージョン (`•NET`)
|
- 現在の .NET のバージョン (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- カレントディレクトリにある現在のパッケージバージョン(`📦`)
|
- カレントディレクトリにある現在のパッケージバージョン(`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
@ -249,7 +251,7 @@ Starship の設定方法の詳細に関しては、[ドキュメント](https://
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@ Starship の設定方法の詳細に関しては、[ドキュメント](https://
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Чтобы начать конфигурацию Starship, создайте следующий файл: `~/.config/starship.toml`.
|
Чтобы начать конфигурацию Starship, создайте следующий файл: `~/.config/starship.toml`.
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
Вы можете изменить расположение файла `starship.toml` переменной окружения `STARSHIP_CONFIG`:
|
Вы можете изменить расположение файла `starship.toml` переменной окружения `STARSHIP_CONFIG`:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. Модуль будет показан, если любое из следующих условий соблюдено:
|
||||||
|
|
||||||
|
- Текущий каталог содержит файл `elm.json`
|
||||||
|
- Текущий каталог содержит файл `elm-package.json`
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### Опции
|
||||||
|
|
||||||
|
| Переменная | По умолчанию | Описание |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | Стиль модуля. |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### Пример
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## Переменная Окружения
|
## Переменная Окружения
|
||||||
|
|
||||||
Модуль `env_var` отображает текущее значение выбранной переменной окружения. Модуль будет показан только в том случае, если любое из следующих условий соблюдено:
|
Модуль `env_var` отображает текущее значение выбранной переменной окружения. Модуль будет показан только в том случае, если любое из следующих условий соблюдено:
|
||||||
@ -597,18 +626,18 @@ symbol = "🏎💨 "
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Ветвь Mercurial
|
## Ветка Mercurial
|
||||||
|
|
||||||
Модуль `hg_branch` показывает активную ветку репозитория в вашей текущей директории.
|
Модуль `hg_branch` показывает активную ветку репозитория в вашем текущем каталоге.
|
||||||
|
|
||||||
### Опции
|
### Опции
|
||||||
|
|
||||||
| Переменная | По умолчанию | Описание |
|
| Переменная | По умолчанию | Описание |
|
||||||
| ------------------- | --------------- | ---------------------------------------------------------------------------------------- |
|
| ------------------- | --------------- | ---------------------------------------------------------------------------------------- |
|
||||||
| `symbol` | `" "` | Символ, используемый перед закладкой hg или именем ветви репозитория в текущем каталоге. |
|
| `symbol` | `" "` | Символ, используемый перед закладкой hg или именем ветки репозитория в текущем каталоге. |
|
||||||
| `truncation_length` | `2^63 - 1` | Обрезает имя ветки hg до X графемов |
|
| `truncation_length` | `2^63 - 1` | Обрезает имя ветки hg до X графемов |
|
||||||
| `truncation_symbol` | `"…"` | Символ, используемый для обозначения усечения названия ветки. |
|
| `truncation_symbol` | `"…"` | Символ, используемый для обозначения усечения названия ветки. |
|
||||||
| `style` | `"bold purple"` | Стиль модуля. |
|
| `style` | `"bold purple"` | Стиль модуля. |
|
||||||
@ -631,14 +660,14 @@ truncation_symbol = ""
|
|||||||
|
|
||||||
### Опции
|
### Опции
|
||||||
|
|
||||||
| Переменная | По умолчанию | Описание |
|
| Переменная | По умолчанию | Описание |
|
||||||
| ---------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
|
| ---------- | --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `ssh_only` | `true` | Показывать имя хоста только при подключении через SSH. |
|
| `ssh_only` | `true` | Показывать имя хоста только при подключении к SSH-сессии. |
|
||||||
| `prefix` | `""` | Префикс, отображаемый непосредственно перед именем хоста. |
|
| `prefix` | `""` | Префикс, отображаемый непосредственно перед именем хоста. |
|
||||||
| `suffix` | `""` | Суффикс, отображаемый непосредственно перед именем хоста. |
|
| `suffix` | `""` | Суффикс, отображаемый непосредственно перед именем хоста. |
|
||||||
| `trim_at` | `"."` | Символы, по которую имя хоста будет сокращено после первого совпадения. `"."` остановится после первой точки. `""` отключит любое усечение |
|
| `trim_at` | `"."` | Строка, по которую имя хоста будет сокращено после первого совпадения. `"."` остановится после первой точки. `"` отключит любое усечение |
|
||||||
| `style` | `"bold dimmed green"` | Стиль модуля. |
|
| `style` | `"bold dimmed green"` | Стиль модуля. |
|
||||||
| `disabled` | `false` | Отключает модуль `hostname`. |
|
| `disabled` | `false` | Отключает модуль `hostname`. |
|
||||||
|
|
||||||
### Пример
|
### Пример
|
||||||
|
|
||||||
@ -653,7 +682,7 @@ trim_at = ".companyname.com"
|
|||||||
disabled = false
|
disabled = false
|
||||||
```
|
```
|
||||||
|
|
||||||
## Работы
|
## Задачи
|
||||||
|
|
||||||
Модуль `jobs` отображает текущее количество запущенных работ. Модуль будет показан только если работы выполняются в фоне. Модуль покажет количество запущенных задач при более 1 задачи, или больше, чем значение настройки `threshold`, если оно существует.
|
Модуль `jobs` отображает текущее количество запущенных работ. Модуль будет показан только если работы выполняются в фоне. Модуль покажет количество запущенных задач при более 1 задачи, или больше, чем значение настройки `threshold`, если оно существует.
|
||||||
|
|
||||||
@ -662,7 +691,7 @@ disabled = false
|
|||||||
| Переменная | По умолчанию | Описание |
|
| Переменная | По умолчанию | Описание |
|
||||||
| ----------- | ------------- | --------------------------------------------------------- |
|
| ----------- | ------------- | --------------------------------------------------------- |
|
||||||
| `symbol` | `"✦"` | Символ, используемый перед отображением количества работ. |
|
| `symbol` | `"✦"` | Символ, используемый перед отображением количества работ. |
|
||||||
| `threshold` | `1` | Показывать количество работ, если превышено. |
|
| `threshold` | `1` | Показывать количество задач, если превышено. |
|
||||||
| `style` | `"bold blue"` | Стиль модуля. |
|
| `style` | `"bold blue"` | Стиль модуля. |
|
||||||
| `disabled` | `false` | Отключает модуль `jobs`. |
|
| `disabled` | `false` | Отключает модуль `jobs`. |
|
||||||
|
|
||||||
@ -678,7 +707,7 @@ threshold = 4
|
|||||||
|
|
||||||
## Kubernetes
|
## Kubernetes
|
||||||
|
|
||||||
Отображает текущее контекстное имя Kubernetes и, если применено, пространство имён из файла kubeconfig. Пространство имен дожно быть задано в файле kubeconfig, это делается через `kubectl config set-context starship-cluster --namespace astronaut`. Если переменная окружения `$KUBECONFIG` задана, модуль будет использовать его значение, в противном случае будет использовать `~/.kube/config`.
|
Отображает текущее контекстное имя Kubernetes и, если применено, пространство имён из файла kubeconfig. Пространство имен дожно быть задано в файле kubeconfig, это делается через `kubectl config set-context starship-cluster --namespace astronaut`. Если переменная окружения `$KUBECONFIG` установлена, модуль будет использовать это, в противном случае будет использовать `~/.kube/config`.
|
||||||
|
|
||||||
::: tip Подсказка
|
::: tip Подсказка
|
||||||
|
|
||||||
@ -705,7 +734,7 @@ style = "dim green"
|
|||||||
disabled = false
|
disabled = false
|
||||||
```
|
```
|
||||||
|
|
||||||
## Разрыв Строки
|
## Перевод Строки
|
||||||
|
|
||||||
Модуль `line_break` разделяет командную строку на две строки.
|
Модуль `line_break` разделяет командную строку на две строки.
|
||||||
|
|
||||||
@ -812,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. Модуль будет показан, если любое из следующих условий соблюдено:
|
||||||
|
|
||||||
|
- Текущий каталог содержит файл `shard.yml`
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### Опции
|
||||||
|
|
||||||
|
| Переменная | По умолчанию | Описание |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | Стиль модуля. |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### Пример
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
Модуль `nodejs` показывает установленную версию NodeJS. Модуль будет показан, если любое из следующих условий соблюдено:
|
Модуль `nodejs` показывает установленную версию NodeJS. Модуль будет показан, если любое из следующих условий соблюдено:
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="Чат в Discord" /></a>
|
alt="Чат в Discord" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="Все Участники"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="Все Участники"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,45 +73,47 @@
|
|||||||
## 🍬 Особенности
|
## 🍬 Особенности
|
||||||
|
|
||||||
- Символ подсказки становится красным, если последняя команда завершается с ненулевым кодом
|
- Символ подсказки становится красным, если последняя команда завершается с ненулевым кодом
|
||||||
|
- Current Elm version (`🌳`)
|
||||||
- Текущая версия Go (`🐹`)
|
- Текущая версия Go (`🐹`)
|
||||||
- Текущая версия Haskell (`λ`)
|
- Текущая версия Haskell (`λ`)
|
||||||
- Текущая версия Java (`☕`)
|
- Текущая версия Java(`☕< / 0>)</li>
|
||||||
- Текущая версия Node.js (`⬢`)
|
<li>Текущая версия Node.js (<code>⬢< / 0>)</li>
|
||||||
- Текущая версия PHP (`🐘`)
|
<li>Текущая версия PHP (<code>🐘`)
|
||||||
- Текущая версия Python (`🐍`)
|
- Текущая версия Python (`🐍`)
|
||||||
- Текущая версия Ruby (`💎`)
|
- Текущая версия Ruby (`💎`)
|
||||||
- Текущая версия Rust (`🦀`)
|
- Текущая версия Rust (`🦀`)
|
||||||
- Текущая версия .NET (`•NET`)
|
- Текущая версия .NET (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- Текущая версия пакета в текущей директории (`📦`)
|
- Текущая версия пакета в текущей директории (`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
- poetry (Python)
|
- poetry (Python)
|
||||||
- композитор (PHP)
|
- composer (PHP)
|
||||||
- Текущая ветка Git и статус репозитория:
|
- Текущая ветка Git и статус репозитория:
|
||||||
- `=` — конфликтующие изменения
|
- `=` — конфликтующие изменения
|
||||||
- `⇡` — впереди отслеживаемой ветви
|
- `⇡` — впереди удаленной ветки
|
||||||
- `⇣` — позади отслеживаемой ветви
|
- `⇣` — позади удаленной ветки
|
||||||
- `⇕` — расходящиеся изменения
|
- `⇕` — неоднозначные изменения
|
||||||
- `?` — не отслеживаемые изменения
|
- `?` — не отслеживаемые изменения
|
||||||
- `$` — отложенные в тайник изменения
|
- `$` — отложенные изменения
|
||||||
- `!` — изменённые файлы
|
- `!` — изменённые файлы
|
||||||
- `+` — добавленные файлы
|
- `+` — добавленные файлы
|
||||||
- `»` — переименнованные файлы
|
- `»` — переименнованные файлы
|
||||||
- `✘` — удалённые файлы
|
- `✘` — удалённые файлы
|
||||||
- Текущая ветвь Mercurial
|
- Текущая ветка Mercurial
|
||||||
- Текущий уровень и состояние заряда батареи
|
- Текущий уровень и состояние заряда батареи
|
||||||
- `⇡` – зарядка
|
- `⇡` – зарядка
|
||||||
- `⇣` – разрядка
|
- `⇣` – разрядка
|
||||||
- `•` – полностью заряжено
|
- `•` – полная зарядка
|
||||||
- Индикатор работ в фоне (`✦`)
|
- Индикатор задач в фоне (`✦`)
|
||||||
- Текущий кластер и пространство имён Kubernetes (`☸`)
|
- Текущий кластер и пространство имён Kubernetes (`☸`)
|
||||||
- Текущий профиль Amazon Web Services (AWS) (`☁`)
|
- Текущий профиль Amazon Web Services (AWS) (`☁`)
|
||||||
- Время исполнения последней команды
|
- Время выполнения последней команды
|
||||||
- Значение переменной окружения
|
- Значение переменной окружения
|
||||||
- Обнаружение среды Nix-shell
|
- Обнаружение среды Nix-shell
|
||||||
- Текущее имя пользователя, если оно не совпадает с логином
|
- Текущее имя пользователя, если оно не совпадает с именем залогиненного пользователя
|
||||||
- Необязательное текущее время в 12- или 24-часовом формате
|
- Необязательное текущее время в 12- или 24-часовом формате
|
||||||
- Текущее рабочее пространство и версия Terraform (`💠`)
|
- Текущее рабочее пространство Terraform и версия (`💠`)
|
||||||
- Текущая среда Conda (`C`)
|
- Текущая среда Conda (`C`)
|
||||||
|
|
||||||
## 🚀 Установка
|
## 🚀 Установка
|
||||||
@ -249,7 +251,7 @@
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ Starship 目前正在开发中。 很多新的配置选项将会在之后的版
|
|||||||
|
|
||||||
您需要创建配置文件 `~/.config/starship.toml` 以供 Starship 使用。
|
您需要创建配置文件 `~/.config/starship.toml` 以供 Starship 使用。
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
你可以设置环境变量 `STARSHIP_CONFIG` 来修改 starship 查找配置文件 `starship.toml` 时查找的位置:
|
你可以设置环境变量 `STARSHIP_CONFIG` 来修改 starship 查找配置文件 `starship.toml` 时查找的位置:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
|
- 当前目录包含 `elm.json` 文件
|
||||||
|
- 当前目录包含 `elm-package.json` 文件
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### 配置项
|
||||||
|
|
||||||
|
| 字段 | 默认值 | 描述 |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | 此组件的样式。 |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### 示例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## Environment Variable
|
## Environment Variable
|
||||||
|
|
||||||
`env_var` 组件显示选定的环境变量的当前值。 此组件只有满足以下条件之一时才会被显示:
|
`env_var` 组件显示选定的环境变量的当前值。 此组件只有满足以下条件之一时才会被显示:
|
||||||
@ -597,7 +626,7 @@ symbol = "🏎💨 "
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial Branch
|
## Mercurial Branch
|
||||||
@ -752,7 +781,7 @@ pure_msg = "pure shell"
|
|||||||
|
|
||||||
## Java
|
## Java
|
||||||
|
|
||||||
`java` 组件显示当前安装的 Java 版本。 此组件将在符合以下条件之一时显示:
|
`java` 组件显示当前安装的 Java 版本。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含 `pom.xml`,`build.gradle.kts` 或 `build.sbt` 文件
|
- 当前目录包含 `pom.xml`,`build.gradle.kts` 或 `build.sbt` 文件
|
||||||
- 当前目录包含一个扩展名为 `.java`,`.class`,`.gradle` 或 `.jar` 的文件
|
- 当前目录包含一个扩展名为 `.java`,`.class`,`.gradle` 或 `.jar` 的文件
|
||||||
@ -812,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
|
- 当前目录包含 `shard.yml` 文件
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### 配置项
|
||||||
|
|
||||||
|
| 字段 | 默认值 | 描述 |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | 此组件的样式。 |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### 示例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
`nodejs` 组件显示当前安装的 NodeJS 版本。 此组件将在符合以下任意条件之一时显示:
|
`nodejs` 组件显示当前安装的 NodeJS 版本。 此组件将在符合以下任意条件之一时显示:
|
||||||
@ -867,7 +921,7 @@ symbol = "🎁 "
|
|||||||
|
|
||||||
## PHP
|
## PHP
|
||||||
|
|
||||||
`php` 组件显示当前安装的 PHP 版本。 此组件将在符合以下任意条件之一时显示:
|
`php` 组件显示当前安装的 PHP 版本。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含一个 `composer.json` 文件
|
- 当前目录包含一个 `composer.json` 文件
|
||||||
- 当前目录包含一个 `.php` 文件
|
- 当前目录包含一个 `.php` 文件
|
||||||
@ -897,7 +951,7 @@ symbol = "🔹 "
|
|||||||
|
|
||||||
否则,它将显示来自 `python --version` 的版本号,并显示当前的 Python 虚拟环境,如果激活了的话。
|
否则,它将显示来自 `python --version` 的版本号,并显示当前的 Python 虚拟环境,如果激活了的话。
|
||||||
|
|
||||||
此组件将在符合以下任意条件之一时显示:
|
此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含 `.python-version` 文件
|
- 当前目录包含 `.python-version` 文件
|
||||||
- 当前目录包含 `requirements.txt` 文件
|
- 当前目录包含 `requirements.txt` 文件
|
||||||
@ -930,7 +984,7 @@ pyenv_prefix = "foo "
|
|||||||
|
|
||||||
## Ruby
|
## Ruby
|
||||||
|
|
||||||
`ruby` 组件显示当前安装的 Ruby 版本。 此组件将在符合以下任意条件之一时显示:
|
`ruby` 组件显示当前安装的 Ruby 版本。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含 `Gemfile` 文件
|
- 当前目录包含 `Gemfile` 文件
|
||||||
- 当前目录包含 `.rb` 文件
|
- 当前目录包含 `.rb` 文件
|
||||||
@ -954,7 +1008,7 @@ symbol = "🔺 "
|
|||||||
|
|
||||||
## Rust
|
## Rust
|
||||||
|
|
||||||
`rust` 组件显示当前安装的 Rust 版本。 此组件将在符合以下任意条件时显示:
|
`rust` 组件显示当前安装的 Rust 版本。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含 `Cargo.toml` 文件
|
- 当前目录包含 `Cargo.toml` 文件
|
||||||
- 当前目录包含一个使用 `.rs` 扩展名的文件
|
- 当前目录包含一个使用 `.rs` 扩展名的文件
|
||||||
@ -978,7 +1032,7 @@ symbol = "⚙️ "
|
|||||||
|
|
||||||
## Terraform
|
## Terraform
|
||||||
|
|
||||||
`terraform` 组件显示当前选定的 terraform 工作区和版本。 默认情况下不会显示 terraform 版本,因为当使用大量插件时,当前版本 terraform 查询版本号很慢。 此组件将在符合以下任意条件时显示:
|
`terraform` 组件显示当前选定的 terraform 工作区和版本。 默认情况下不会显示 terraform 版本,因为当使用大量插件时,当前版本 terraform 查询版本号很慢。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前目录包含 `.terraform` 目录
|
- 当前目录包含 `.terraform` 目录
|
||||||
- 当前目录包含一个使用 `.tf` 扩展名的文件
|
- 当前目录包含一个使用 `.tf` 扩展名的文件
|
||||||
@ -1036,7 +1090,7 @@ utc_time_offset = -5
|
|||||||
|
|
||||||
## Username
|
## Username
|
||||||
|
|
||||||
`username` 组件显示当前活跃的用户名。 此组件将在符合以下任意条件时显示:
|
`username` 组件显示当前活跃的用户名。 此组件只有满足以下条件之一时才会被显示:
|
||||||
|
|
||||||
- 当前用户是 root
|
- 当前用户是 root
|
||||||
- 当前用户与登录用户不相同
|
- 当前用户与登录用户不相同
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="加入 Discord" /></a>
|
alt="加入 Discord" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="所有贡献者"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="所有贡献者"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,21 +73,23 @@
|
|||||||
## 🍬 特性
|
## 🍬 特性
|
||||||
|
|
||||||
- 当上一个命令以非 0 状态退出时,提示字符会变为红色
|
- 当上一个命令以非 0 状态退出时,提示字符会变为红色
|
||||||
- 显示当前 Go 版本(`🐹`)
|
- Current Elm version (`🌳`)
|
||||||
|
- 当前 Go 版本 (`🐹`)
|
||||||
- 显示当前 Haskell 版本(`λ`)
|
- 显示当前 Haskell 版本(`λ`)
|
||||||
- 显示当前 Java 版本(`☕`)
|
- 当前 Java 版本(`☕`)
|
||||||
- 显示当前 Node.js 版本(`⬢`)
|
- 当前 Node.js 版本(`⬢`)
|
||||||
- 显示当前 PHP 版本(`🐘`)
|
- 显示当前 PHP 版本(`🐘`)
|
||||||
- 显示当前 Python 版本(`🐍`)
|
- 显示当前 Python 版本(`🐍`)
|
||||||
- 显示当前 Ruby 版本(`💎`)
|
- 当前 Ruby 版本 (`💎`)
|
||||||
- 显示当前 Rust 版本(`🦀`)
|
- 当前 Rust 版本 (`🦀`)
|
||||||
- 显示当前 .NET 版本(`•NET`)
|
- 显示当前 .NET 版本(`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- 显示当前目录中项目的版本(`📦`)
|
- 显示当前目录中项目的版本(`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
- poetry (Python)
|
- poetry (Python)
|
||||||
- composer(PHP)
|
- composer(PHP)
|
||||||
- 显示当前的 Git 分支与各种仓库状态:
|
- 当前 Git 分支与一应俱全的仓库状态
|
||||||
- `=` —— 修改冲突
|
- `=` —— 修改冲突
|
||||||
- `⇡` —— 领先于远程分支
|
- `⇡` —— 领先于远程分支
|
||||||
- `⇣` —— 落后于远程分支
|
- `⇣` —— 落后于远程分支
|
||||||
@ -99,7 +101,7 @@
|
|||||||
- `»` —— 文件重命名
|
- `»` —— 文件重命名
|
||||||
- `✘` —— 文件被删除
|
- `✘` —— 文件被删除
|
||||||
- 显示当前的 Mercurial 分支
|
- 显示当前的 Mercurial 分支
|
||||||
- 显示当前电量剩余与电源状态
|
- 当前电池剩余容量与状态
|
||||||
- `⇡` —— 电池充电中
|
- `⇡` —— 电池充电中
|
||||||
- `⇣` —— 电池耗电中
|
- `⇣` —— 电池耗电中
|
||||||
- `•` —— 电池已充满
|
- `•` —— 电池已充满
|
||||||
@ -109,7 +111,7 @@
|
|||||||
- 显示上一条命令的执行用时
|
- 显示上一条命令的执行用时
|
||||||
- 自定义环境变量值
|
- 自定义环境变量值
|
||||||
- Nix-shell 环境检测
|
- Nix-shell 环境检测
|
||||||
- 如果当前用户与不是登录用户,显示当前用户名
|
- 非当前登录用户的用户名
|
||||||
- 12/24 小时格式的时间显示(可选)
|
- 12/24 小时格式的时间显示(可选)
|
||||||
- 显示 Terraform 工作区和当前版本(`💠`)
|
- 显示 Terraform 工作区和当前版本(`💠`)
|
||||||
- 显示当前 Conda 环境(`C`)
|
- 显示当前 Conda 环境(`C`)
|
||||||
@ -249,7 +251,7 @@
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
為了開始設定 Starship,請建立下右檔案: `~/.config/starship.toml`.
|
為了開始設定 Starship,請建立下右檔案: `~/.config/starship.toml`.
|
||||||
|
|
||||||
```shell
|
```sh
|
||||||
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
$ mkdir -p ~/.config && touch ~/.config/starship.toml
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ disabled = true
|
|||||||
```
|
```
|
||||||
|
|
||||||
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
You can change default `starship.toml` file location with `STARSHIP_CONFIG` environment variable:
|
||||||
```shell
|
```sh
|
||||||
export STARSHIP_CONFIG=~/.starship
|
export STARSHIP_CONFIG=~/.starship
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -100,6 +100,7 @@ prompt_order = [
|
|||||||
"hg_branch",
|
"hg_branch",
|
||||||
"package",
|
"package",
|
||||||
"dotnet",
|
"dotnet",
|
||||||
|
"elm",
|
||||||
"golang",
|
"golang",
|
||||||
"haskell",
|
"haskell",
|
||||||
"java",
|
"java",
|
||||||
@ -114,6 +115,7 @@ prompt_order = [
|
|||||||
"memory_usage",
|
"memory_usage",
|
||||||
"aws",
|
"aws",
|
||||||
"env_var",
|
"env_var",
|
||||||
|
"crystal",
|
||||||
"cmd_duration",
|
"cmd_duration",
|
||||||
"line_break",
|
"line_break",
|
||||||
"jobs",
|
"jobs",
|
||||||
@ -376,6 +378,33 @@ style = "green"
|
|||||||
heuristic = false
|
heuristic = false
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Elm
|
||||||
|
|
||||||
|
The `elm` module shows the currently installed version of Elm. 這個模組在下列其中一個條件達成時顯示:
|
||||||
|
|
||||||
|
- 現在資料夾中包含一個 `elm.json` 檔案
|
||||||
|
- 現在資料夾中包含一個 `elm-package.json` 檔案
|
||||||
|
- The current directory contains a `elm-stuff` folder
|
||||||
|
- The current directory contains a `*.elm` files
|
||||||
|
|
||||||
|
### 選項
|
||||||
|
|
||||||
|
| 變數 | 預設 | 說明 |
|
||||||
|
| ---------- | ------------- | ----------------------------------------------------- |
|
||||||
|
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
|
||||||
|
| `style` | `"bold cyan"` | 這個模組的風格。 |
|
||||||
|
| `disabled` | `false` | Disables the `elm` module. |
|
||||||
|
|
||||||
|
|
||||||
|
### 範例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[elm]
|
||||||
|
symbol = " "
|
||||||
|
```
|
||||||
|
|
||||||
## 環境變數
|
## 環境變數
|
||||||
|
|
||||||
`env_var`模組顯示一個選擇的環境變數的現在數值。 這個模組只在下列條件其中之一達到時顯示:
|
`env_var`模組顯示一個選擇的環境變數的現在數值。 這個模組只在下列條件其中之一達到時顯示:
|
||||||
@ -580,7 +609,7 @@ symbol = "🏎💨 "
|
|||||||
|
|
||||||
The `haskell` module shows the currently installed version of Haskell Stack version. 這個模組在下列其中一個條件達成時顯示:
|
The `haskell` module shows the currently installed version of Haskell Stack version. 這個模組在下列其中一個條件達成時顯示:
|
||||||
|
|
||||||
- 目前資料夾中有一個 `stack.yaml` 檔案
|
- 現在資料夾中含有一個 `stack.yaml` 檔案
|
||||||
|
|
||||||
### 選項
|
### 選項
|
||||||
|
|
||||||
@ -597,7 +626,7 @@ The `haskell` module shows the currently installed version of Haskell Stack vers
|
|||||||
# ~/.config/starship.toml
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
[haskell]
|
[haskell]
|
||||||
symbol = "λx.x "
|
symbol = " "
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mercurial Branch
|
## Mercurial Branch
|
||||||
@ -812,6 +841,31 @@ separator = "/"
|
|||||||
style = "bold dimmed green"
|
style = "bold dimmed green"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Crystal
|
||||||
|
|
||||||
|
The `crystal` module shows the currently installed version of Crystal. 這個模組在下列其中一個條件達成時顯示:
|
||||||
|
|
||||||
|
- 現在資料夾中含有一個 `shard.yml` 檔案
|
||||||
|
- The current directory contains a `.cr` file
|
||||||
|
|
||||||
|
### 選項
|
||||||
|
|
||||||
|
| 變數 | 預設 | 說明 |
|
||||||
|
| ---------- | ------------ | --------------------------------------------------------- |
|
||||||
|
| `symbol` | `"🔮 "` | The symbol used before displaying the version of crystal. |
|
||||||
|
| `style` | `"bold red"` | 這個模組的風格。 |
|
||||||
|
| `disabled` | `false` | Disables the `crystal` module. |
|
||||||
|
|
||||||
|
### 範例
|
||||||
|
|
||||||
|
```toml
|
||||||
|
# ~/.config/starship.toml
|
||||||
|
|
||||||
|
[crystal]
|
||||||
|
symbol = "✨ "
|
||||||
|
style = "bold blue"
|
||||||
|
```
|
||||||
|
|
||||||
## NodeJS
|
## NodeJS
|
||||||
|
|
||||||
`nodejs` 模組顯示現在安裝的 NodeJS 版本。 這個模組在下列其中一個條件達成時顯示:
|
`nodejs` 模組顯示現在安裝的 NodeJS 版本。 這個模組在下列其中一個條件達成時顯示:
|
||||||
@ -869,7 +923,7 @@ symbol = "🎁 "
|
|||||||
|
|
||||||
The `php` module shows the currently installed version of PHP. 這個模組在下列其中一個條件達成時顯示:
|
The `php` module shows the currently installed version of PHP. 這個模組在下列其中一個條件達成時顯示:
|
||||||
|
|
||||||
- 現在資料夾中包含一個 `composer.json` 檔案
|
- 目前資料夾中有一個 `composer.json` 檔案
|
||||||
- The current directory contains a `.php` file
|
- The current directory contains a `.php` file
|
||||||
|
|
||||||
### 選項
|
### 選項
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
src="https://img.shields.io/discord/567163873606500352?logo=discord"
|
||||||
alt="在 Discord 上聊天" /></a>
|
alt="在 Discord 上聊天" /></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
||||||
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-69-orange" alt="All Contributors"></a>
|
<a href="#contributors"><img src="https://img.shields.io/badge/all%20contributors-70-orange" alt="All Contributors"></a>
|
||||||
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
<a href="https://github.com/starship/starship/blob/master/docs/de-DE/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-de.png" alt="Deutsch" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/zh-CN"
|
<a href="https://github.com/starship/starship/blob/master/docs/zh-CN/guide/README.md"
|
||||||
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
><img height="20" src="https://raw.githubusercontent.com/starship/starship/master/media/flag-cn.png" alt="简体中文" /></a>
|
||||||
|
|
||||||
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
<a href="https://translate.starship.rs/project/starship-prompt/es"
|
||||||
@ -73,6 +73,7 @@
|
|||||||
## 🍬 特色
|
## 🍬 特色
|
||||||
|
|
||||||
- 如果最近一個指令結束時回傳非零的代碼,提示字元將轉成紅色
|
- 如果最近一個指令結束時回傳非零的代碼,提示字元將轉成紅色
|
||||||
|
- Current Elm version (`🌳`)
|
||||||
- 現在的 Go 版本 (`🐹`)
|
- 現在的 Go 版本 (`🐹`)
|
||||||
- Current Haskell version (`λ`)
|
- Current Haskell version (`λ`)
|
||||||
- 現在的 Java 版本 (`☕`)
|
- 現在的 Java 版本 (`☕`)
|
||||||
@ -82,6 +83,7 @@
|
|||||||
- 現在的 Ruby 版本 (`💎`)
|
- 現在的 Ruby 版本 (`💎`)
|
||||||
- 現在的 Rust 版本 (`🦀`)
|
- 現在的 Rust 版本 (`🦀`)
|
||||||
- Current .NET version (`•NET`)
|
- Current .NET version (`•NET`)
|
||||||
|
- Current Crystal version (`🔮`).
|
||||||
- 現在資料夾中的組件 (package) 版本 (`📦`)
|
- 現在資料夾中的組件 (package) 版本 (`📦`)
|
||||||
- npm (Node.js)
|
- npm (Node.js)
|
||||||
- cargo (Rust)
|
- cargo (Rust)
|
||||||
@ -249,7 +251,7 @@
|
|||||||
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
<td align="center"><a href="https://github.com/sirMerr"><img src="https://avatars2.githubusercontent.com/u/11183523?v=4" width="100px;" alt="" /><br /><sub><b>Tiffany Le-Nguyen</b></sub></a><br /><a href="#ideas-sirMerr" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-sirMerr" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3AsirMerr" title="Reviewed Pull Requests">👀</a> <a href="https://github.com/starship/starship/commits?author=sirMerr" title="Documentation">📖</a></td>
|
||||||
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://about.snuggi.es"><img src="https://avatars0.githubusercontent.com/u/26250962?v=4" width="100px;" alt="" /><br /><sub><b>Snuggle</b></sub></a><br /><a href="#design-Snuggle" title="Design">🎨</a> <a href="#ideas-Snuggle" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-Snuggle" title="Maintenance">🚧</a> <a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3ASnuggle" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
<td align="center"><a href="https://github.com/mehcode"><img src="https://avatars1.githubusercontent.com/u/753919?v=4" width="100px;" alt="" /><br /><sub><b>Ryan Leckey</b></sub></a><br /><a href="https://github.com/starship/starship/pulls?q=is%3Apr+reviewed-by%3Amehcode" title="Reviewed Pull Requests">👀</a></td>
|
||||||
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a></td>
|
<td align="center"><a href="https://github.com/youssefhabri"><img src="https://avatars3.githubusercontent.com/u/1578005?v=4" width="100px;" alt="" /><br /><sub><b>Youssef Habri</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=youssefhabri" title="Tests">⚠️</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
<td align="center"><a href="https://github.com/chipbuster"><img src="https://avatars2.githubusercontent.com/u/4605384?v=4" width="100px;" alt="" /><br /><sub><b>Kevin Song</b></sub></a><br /><a href="https://github.com/starship/starship/issues?q=author%3Achipbuster" title="Bug reports">🐛</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=chipbuster" title="Tests">⚠️</a></td>
|
||||||
@ -329,7 +331,8 @@
|
|||||||
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://blog.brightone.space"><img src="https://avatars1.githubusercontent.com/u/12615679?v=4" width="100px;" alt="" /><br /><sub><b>Oleksii Filonenko</b></sub></a><br /><a href="#translation-filalex77" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
<td align="center"><a href="https://github.com/ivanovart"><img src="https://avatars2.githubusercontent.com/u/5867379?v=4" width="100px;" alt="" /><br /><sub><b>Artem Ivanov</b></sub></a><br /><a href="#translation-ivanovart" title="Translation">🌍</a></td>
|
||||||
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
<td align="center"><a href="http://www.drivendata.org"><img src="https://avatars3.githubusercontent.com/u/1799186?v=4" width="100px;" alt="" /><br /><sub><b>Peter Bull</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=pjbull" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=pjbull" title="Tests">⚠️</a></td>
|
||||||
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a> <a href="#projectManagement-m0nhawk" title="Project Management">📆</a></td>
|
<td align="center"><a href="https://andrewpro.me"><img src="https://avatars1.githubusercontent.com/u/8220926?v=4" width="100px;" alt="" /><br /><sub><b>Andrew Prokhorenkov</b></sub></a><br /><a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Code">💻</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Documentation">📖</a> <a href="https://github.com/starship/starship/commits?author=m0nhawk" title="Tests">⚠️</a></td>
|
||||||
|
<td align="center"><a href="https://github.com/chirsz-ever"><img src="https://avatars2.githubusercontent.com/u/31474766?v=4" width="100px;" alt="" /><br /><sub><b>chirsz</b></sub></a><br /><a href="#translation-chirsz-ever" title="Translation">🌍</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user