2019-09-12 19:41:23 +00:00
# 設定
::: tip
2019-09-28 11:31:56 +00:00
🔥Starshipの開発は現在も進んでいます。 多くの新しいオプションが今後のリリースで利用可能になります。
2019-09-12 19:41:23 +00:00
:::
2019-09-28 11:31:56 +00:00
Starshipの設定を開始するには、`~/.config/starship.toml` ファイルを作成します。
2019-09-12 19:41:23 +00:00
2020-02-07 21:47:30 +00:00
```sh
2019-11-29 19:47:23 +00:00
$ mkdir -p ~/.config & & touch ~/.config/starship.toml
2019-09-12 19:41:23 +00:00
```
2019-09-28 11:31:56 +00:00
Starshipのすべての設定は、この[TOML](https://github.com/toml-lang/toml)ファイルで行われます。
2019-09-12 19:41:23 +00:00
```toml
2019-09-28 11:31:56 +00:00
# Don't print a new line at the start of the prompt
2019-09-12 19:41:23 +00:00
add_newline = false
2019-09-28 11:31:56 +00:00
# Replace the "❯ " symbol in the prompt with "➜"
[character] # The name of the module we are configuring is "character"
2019-09-12 19:41:23 +00:00
symbol = "➜" # The "symbol" segment is being set to "➜"
2019-09-28 11:31:56 +00:00
# Disable the package module, hiding it from the prompt completely
2019-09-12 19:41:23 +00:00
[package]
disabled = true
```
2020-02-04 17:11:36 +00:00
`STARSHIP_CONFIG` 環境変数を使用して、デフォルトの`starship.toml` ファイルの場所を変更できます。
2020-02-07 21:47:30 +00:00
```sh
2020-01-15 17:23:25 +00:00
export STARSHIP_CONFIG=~/.starship
```
2019-09-12 19:41:23 +00:00
### 用語
2019-09-28 11:31:56 +00:00
**モジュール**: OSのコンテキスト情報に基づいて情報を提供するプロンプト内のコンポーネントです。 たとえば、現在のディレクトリがNodeJSプロジェクトである場合、「nodejs」モジュールは、現在コンピューターにインストールされているNodeJSのバージョンを表示します。
2019-09-12 19:41:23 +00:00
2019-09-28 11:31:56 +00:00
**セグメント**: モジュールを構成する小さなサブコンポーネントです。 たとえば、「nodejs」モジュールの「symbol」セグメントには、バージョン番号の前に表示される文字が含まれています( デフォルト: ⬢)。
2019-09-12 19:41:23 +00:00
2019-09-28 11:31:56 +00:00
以下はNode モジュールの表現です。 次の例では、「シンボル」と「バージョン」はその中のセグメントです。 すべてのモジュールには、デフォルトの端末色であるprefixとsuffixもあります。
2019-09-12 19:41:23 +00:00
```
[prefix] [symbol] [version] [suffix]
"via " "⬢" "v10.4.1" ""
```
### スタイルの設定
2019-09-28 11:31:56 +00:00
Starshipのほとんどのモジュールでは、表示スタイルを設定できます。 これは、設定を指定する文字列であるエントリ(`style`)で行われます。 スタイル文字列の例とその機能を次に示します。 完全な構文の詳細については、詳細は [高度な設定 ](/advanced-config/ )を参照してください 。
2019-09-12 19:41:23 +00:00
2019-09-28 11:31:56 +00:00
- `"fg:green bg:blue"` は、青色の背景に緑色のテキストを設定します
- `"bg:blue fg:bright-green"` は、青色の背景に明るい緑色のテキストを設定します
- `"bold fg:27"` は、 [ANSIカラー ](https://i.stack.imgur.com/KTSQa.png ) 27の太字テキストを設定します
- `"underline bg:#bf5700"` は、焦げたオレンジ色の背景に下線付きのテキストを設定します
2019-09-13 01:31:42 +00:00
- `"bold italic fg:purple"` は、紫色の太字斜体のテキストを設定します
2019-09-28 11:31:56 +00:00
- `""` はすべてのスタイルを明示的に無効にします
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
スタイリングがどのように見えるかは、端末エミュレータによって制御されることに注意してください。 たとえば、一部の端末エミュレータはテキストを太字にする代わりに色を明るくします。また、一部のカラーテーマは通常の色と明るい色と同じ値を使用します。 また、斜体のテキストを取得するには、端末で斜体をサポートする必要があります。
2019-09-12 19:41:23 +00:00
## プロンプト
これは、プロンプト全体のオプションのリストです。
### オプション
2019-11-29 19:47:23 +00:00
| 変数 | デフォルト | 説明 |
| -------------- | ----------------------- | ---------------------------------------- |
| `add_newline` | `true` | プロンプトの開始前に新しい行を追加します。 |
| `prompt_order` | [link ](#デフォルトのプロンプト表示順 ) | プロンプトモジュールを出力する順序を設定します。 |
| `scan_timeout` | `30` | ファイルをスキャンする際のタイムアウト時間 (milliseconds) です。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
2019-11-02 11:12:46 +00:00
# Disable the newline at the start of the prompt
2019-09-12 19:41:23 +00:00
add_newline = false
2019-11-02 11:12:46 +00:00
# Overwrite a default_prompt_order and use custom prompt_order
2019-09-12 19:41:23 +00:00
prompt_order=["rust","line_break","package","line_break","character"]
2019-11-02 11:12:46 +00:00
# Wait 10 milliseconds for starship to check files under the current directory.
scan_timeout = 10
2019-09-12 19:41:23 +00:00
```
### デフォルトのプロンプト表示順
2019-09-28 11:31:56 +00:00
デフォルトの`prompt_order`は、空の場合、または`prompt_order`が指定されていない場合に、プロンプトにモジュールが表示される順序を定義するために使用されます。 デフォルトは次のとおりです。
2019-09-12 19:41:23 +00:00
2019-09-15 18:55:02 +00:00
```toml
2019-09-16 16:19:47 +00:00
prompt_order = [
2019-09-12 19:41:23 +00:00
"username",
"hostname",
2019-10-04 08:57:43 +00:00
"kubernetes",
2019-09-12 19:41:23 +00:00
"directory",
"git_branch",
2019-12-06 22:07:57 +00:00
"git_commit",
2019-09-12 19:41:23 +00:00
"git_state",
"git_status",
2019-12-06 22:07:57 +00:00
"hg_branch",
2019-09-12 19:41:23 +00:00
"package",
2019-10-04 08:57:43 +00:00
"dotnet",
2020-04-03 16:35:39 +00:00
"elixir",
2020-02-07 21:47:30 +00:00
"elm",
2019-10-04 08:57:43 +00:00
"golang",
2020-02-04 17:11:36 +00:00
"haskell",
2019-10-04 08:57:43 +00:00
"java",
2019-09-12 19:41:23 +00:00
"nodejs",
2019-12-14 23:46:45 +00:00
"php",
2019-10-04 08:57:43 +00:00
"python",
2019-09-12 19:41:23 +00:00
"ruby",
"rust",
2019-12-14 23:46:45 +00:00
"terraform",
2019-09-12 19:41:23 +00:00
"nix_shell",
2019-10-11 08:31:19 +00:00
"conda",
2019-10-04 08:57:43 +00:00
"memory_usage",
2019-09-28 11:31:56 +00:00
"aws",
"env_var",
2020-02-07 21:47:30 +00:00
"crystal",
2019-09-12 19:41:23 +00:00
"cmd_duration",
"line_break",
"jobs",
"battery",
2019-09-28 11:31:56 +00:00
"time",
2019-09-12 19:41:23 +00:00
"character",
]
```
2019-09-28 11:31:56 +00:00
## AWS
2019-11-02 11:12:46 +00:00
`aws` モジュールは現在のAWSプロファイルが表示されます。 これは `~/.aws/config` に記述されている `AWS_REGION` , `AWS_DEFAULT_REGION` , and `AWS_PROFILE` 環境変数に基づいています。
2019-09-28 11:31:56 +00:00
### オプション
2020-02-04 17:11:36 +00:00
| 変数 | デフォルト | 説明 |
| ----------------- | --------------- | -------------------------------------------------------- |
| `symbol` | `"☁️ "` | 現在のAWSプロファイルを表示する前に表示される記号です。 |
| `displayed_items` | `all` | 表示するアイテムを選択します。 指定可能な値は以下です。[`all`, `profile` , `region` ] |
| `region_aliases` | | AWS名に加えて表示するリージョンのエイリアスです。 |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `aws` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[aws]
style = "bold blue"
symbol = "🅰 "
2019-11-29 19:47:23 +00:00
displayed_items = "region"
2019-12-24 21:54:29 +00:00
[aws.region_aliases]
ap-southeast-2 = "au"
us-east-1 = "va"
2019-09-28 11:31:56 +00:00
```
2019-09-12 19:41:23 +00:00
## バッテリー
2019-09-28 11:31:56 +00:00
`battery` モジュールは、デバイスのバッテリー残量と現在の充電状態を示します。 モジュールは、デバイスのバッテリー残量が10% 未満の場合にのみ表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| -------------------- | ----------------- | ------------------------- |
| `full_symbol` | `"•"` | バッテリーが満タンのときに表示される記号です。 |
| `charging_symbol` | `"⇡"` | バッテリーの充電中に表示される記号です。 |
| `discharging_symbol` | `"⇣"` | バッテリーが放電しているときに表示される記号です。 |
| `display` | [link ](#バッテリーの表示 ) | モジュールの閾値とスタイルを表示します。 |
| `disabled` | `false` | `battery` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
< details >
< summary > いくつかのまれなバッテリー状態のオプションもあります。< / summary >
| 変数 | 説明 |
| ---------------- | ------------------------ |
| `unknown_symbol` | バッテリー状態が不明なときに表示される記号です。 |
| `empty_symbol` | バッテリーが空のときに表示される記号です。 |
オプションを指定しない限り、バッテリーの状態が`unknown`もしくは`empty`になった場合にインジケーターは非表示になります。
< / details >
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "⚡️"
discharging_symbol = "💀"
```
2019-09-13 01:38:58 +00:00
### バッテリーの表示
2020-02-07 21:47:30 +00:00
`display` オプションを使用して、バッテリーインジケーターを表示するタイミング(閾値)と外観(スタイル)を定義します。 `display` が提供されない場合、 デフォルトは次のとおりです。
2019-09-13 01:38:58 +00:00
```toml
[[battery.display]]
threshold = 10
style = "bold red"
```
2019-09-13 02:29:42 +00:00
#### オプション
2019-09-13 01:38:58 +00:00
2019-09-13 02:29:42 +00:00
`display` オプションは、次の表の通りです。
2019-09-13 01:38:58 +00:00
2019-09-28 11:31:56 +00:00
| 変数 | 説明 |
| ----------- | ------------------------------ |
| `threshold` | バッテリーが表示される上限です。 |
| `style` | displayオプションが使用されている場合のスタイルです。 |
2019-09-13 02:29:42 +00:00
#### 設定例
2019-09-13 01:38:58 +00:00
```toml
[[battery.display]] # バッテリー残量が0% 〜10% の間は「太字の赤色」スタイルを利用する
threshold = 10
style = "bold red"
[[battery.display]] # バッテリー残量が10% 〜30% の間は「太字の黄色」スタイルを利用する
threshold = 30
style = "bold yellow"
# 容量が30% を超えると、バッテリーインジケーターは表示されません
```
2019-09-12 19:41:23 +00:00
## 文字
`character` モジュールは、端末でテキストが入力される場所の横に文字(通常は矢印)を表示します。
2019-09-28 11:31:56 +00:00
文字は、最後のコマンドが成功したかどうかを示します。 これは、色の変更(赤/緑)またはその形状の変更(❯ /✖) の2つの方法で行うことができます。 後者は`use_symbol_for_status`に`true`設定されている場合にのみ行われます。
2019-09-12 19:41:23 +00:00
### オプション
2019-09-28 11:31:56 +00:00
| 変数 | デフォルト | 説明 |
| ----------------------- | -------------- | -------------------------------------------- |
| `symbol` | `"❯ "` | プロンプトでテキストを入力する前に使用される記号です。 |
| `error_symbol` | `"✖"` | 前のコマンドが失敗した場合にテキスト入力の前に使用される記号です。 |
| `use_symbol_for_status` | `false` | シンボルを変更してエラーステータスを示します。 |
| `vicmd_symbol` | `"❮ "` | シェルがvimの通常モードである場合、プロンプトのテキスト入力の前に使用される記号です。 |
| `style_success` | `"bold green"` | 最後のコマンドが成功した場合に使用されるスタイルです。 |
| `style_failure` | `"bold red"` | 最後のコマンドが失敗した場合に使用されるスタイルです。 |
| `disabled` | `false` | `character` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[character]
symbol = "➜"
error_symbol = "✗"
use_symbol_for_status = true
```
## コマンド実行時間
2019-09-28 11:31:56 +00:00
`cmd_duration` モジュールは、最後のコマンドの実行にかかった時間を示します。 モジュールが表示されるのは、コマンドが2秒以上かかった場合、または`min_time`値が存在する場合のみです。
2019-09-12 19:41:23 +00:00
::: warning BashでDEBUGトラップをhookしない
2019-09-28 11:31:56 +00:00
2019-09-12 19:41:23 +00:00
`bash` でStarshipを実行している場合、 `eval $(starship init $0)` 実行した後に`DEBUG`トラップをフックしないでください。そうしないと、このモジュールが**おそらくですが**壊れます。
2019-09-28 11:31:56 +00:00
2019-09-12 19:41:23 +00:00
:::
2019-09-28 11:31:56 +00:00
preexecのような機能を必要とするBashユーザーは、 [rcalorasのbash_preexecフレームワーク ](https://github.com/rcaloras/bash-preexec )を使用できます。 `eval $(starship init $0)` を実行する前に、`preexec_functions`、および`precmd_functions`定義するだけで、通常どおり続行します。
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | --------------- | --------------------------- |
| `min_time` | `2_000` | 実行時間を表示する最短期間(ミリ秒単位)です。 |
| `show_milliseconds` | `false` | 実行時間の秒に加えてミリ秒を表示します。 |
| `prefix` | `took` | コマンド実行時間の直前に表示する文字列です。 |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `cmd_duration` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[cmd_duration]
2019-12-24 21:54:29 +00:00
min_time = 500
2019-10-04 08:57:43 +00:00
prefix = "underwent "
2019-09-12 19:41:23 +00:00
```
2019-10-11 08:31:19 +00:00
## Conda
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
`$CONDA_DEFAULT_ENV` が設定されている場合、`conda`モジュールは現在のcondaの環境を表示します。
2019-12-14 23:46:45 +00:00
::: tip
2020-02-04 17:11:36 +00:00
Note: これはconda自身の プロンプト修飾子 を抑制しません。`conda config --set changeps1 False` で実行することができます。
2019-12-14 23:46:45 +00:00
:::
2019-09-12 19:41:23 +00:00
2019-10-11 08:31:19 +00:00
### オプション
2019-12-14 23:46:45 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | -------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `truncation_length` | `1` | The number of directories the environment path should be truncated to, if the environment was created via `conda create -p [path]` . `0` means no truncation. Also see the [`directory` ](#directory ) module. |
2019-12-24 21:54:29 +00:00
| `symbol` | `"C "` | 環境名の直前に使用されるシンボルです。 |
| `style` | `"bold green"` | モジュールのスタイルです。 |
| `disabled` | `false` | `conda` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
2019-10-11 08:31:19 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[conda]
style = "dimmed green"
```
2020-04-03 16:35:39 +00:00
## Crystal
`crystal` モジュールには、現在インストールされているCrystalのバージョンが表示されます。 次の条件のいずれかが満たされると、モジュールが表示されます。
- カレントディレクトリに`shard.yml`ファイルが含まれている
- カレントディレクトリに`.cr`の拡張子のファイルが含まれている
### オプション
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | ------------------------------ |
| `symbol` | `"🔮 "` | Crystalのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `crystal` モジュールを無効にします。 |
### 設定例
```toml
# ~/.config/starship.toml
[crystal]
symbol = "✨ "
style = "bold blue"
```
2019-10-21 14:42:08 +00:00
## ディレクトリ
2019-10-11 08:31:19 +00:00
2019-10-21 14:42:08 +00:00
`directory` モジュールには、現在のディレクトリへのパスが表示され、3つの親フォルダは切り捨てられます。 ディレクトリは、現在のgitリポジトリであるとルートとなります。
2019-10-11 08:31:19 +00:00
2019-12-24 21:54:29 +00:00
fishスタイルのpwdオプションを使用すると、切り捨てられたパスを非表示にする代わりに、オプションで有効にした番号に基づいて各ディレクトリの短縮名が表示されます。
2019-10-11 08:31:19 +00:00
2019-12-24 21:54:29 +00:00
例として、`~/Dev/Nix/nixpkgs/pkgs`で、`nixpkgs`がリポジトリルートであり、オプションが`1`に設定されている場合を挙げます。 以前は`nixpkgs/pkgs`でしたが、`~/D/N/nixpkgs/pkgs`が表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2020-02-04 17:11:36 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | ------------- | ----------------------------- |
| `truncation_length` | `3` | 現在のディレクトリを切り捨てる親フォルダーの数です。 |
| `truncate_to_repo` | `true` | 現在いるgitリポジトリのルートに切り捨てるかどうかです。 |
| `prefix` | `"in "` | ディレクトリ名の直前に表示するprefixです。 |
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
| `disabled` | `false` | `directory` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
< details >
2019-12-24 21:54:29 +00:00
< summary > このモジュールは、どのようにディレクトリを表示するかについての高度なオプションをいくつか持っています。< / summary >
2019-09-28 11:31:56 +00:00
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| --------------------------- | ------ | ---------------------------------------------------------------------------------------- |
| `fish_style_pwd_dir_length` | `0` | The number of characters to use when applying fish shell pwd path logic. |
| `use_logical_path` | `true` | Displays the logical path provided by the shell (`PWD`) instead of the path from the OS. |
`fish_style_pwd_dir_length` interacts with the standard truncation options in a way that can be surprising at first: if it's non-zero, the components of the path that would normally be truncated are instead displayed with that many characters. For example, the path `/built/this/city/on/rock/and/roll` , which would normally be displayed as as `rock/and/roll` , would be displayed as `/b/t/c/o/rock/and/roll` with `fish_style_pwd_dir_length = 1` --the path components that would normally be removed are displayed with a single character. For `fish_style_pwd_dir_length = 2` , it would be `/bu/th/ci/on/rock/and/roll` .
2019-09-28 11:31:56 +00:00
< / details >
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[directory]
truncation_length = 8
```
2019-10-04 08:57:43 +00:00
## Dotnet
2020-04-03 16:35:39 +00:00
The `dotnet` module shows the relevant version of the .NET Core SDK for the current directory. If the SDK has been pinned in the current directory, the pinned version is shown. Otherwise the module shows the latest installed version of the SDK.
2019-10-04 08:57:43 +00:00
2020-04-03 16:35:39 +00:00
This module will only be shown in your prompt when one of the following files are present in the current directory: `global.json` , `project.json` , `*.sln` , `*.csproj` , `*.fsproj` , `*.xproj` . You'll also need the .NET Core command-line tools installed in order to use it correctly.
2019-09-28 11:31:56 +00:00
2020-04-03 16:35:39 +00:00
Internally, this module uses its own mechanism for version detection. Typically it is twice as fast as running `dotnet --version` , but it may show an incorrect version if your .NET project has an unusual directory layout. If accuracy is more important than speed, you can disable the mechanism by setting `heuristic = false` in the module options.
2019-10-04 08:57:43 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ----------- | ------------- | -------------------------------------------------------- |
| `symbol` | `"•NET "` | The symbol used before displaying the version of dotnet. |
| `heuristic` | `true` | Use faster version detection to keep starship snappy. |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `dotnet` module. |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[dotnet]
symbol = "🥅 "
style = "green"
heuristic = false
```
2020-04-03 16:35:39 +00:00
## Elixir
The `elixir` module shows the currently installed version of Elixir and Erlang/OTP. 次の条件のいずれかが満たされると、モジュールが表示されます。
- The current directory contains a `mix.exs` file.
### オプション
| 変数 | デフォルト | 説明 |
| ---------- | ------- | --------------------------------------------------------------- |
| `symbol` | `"💧 "` | The symbol used before displaying the version of Elixir/Erlang. |
| `disabled` | `false` | Disables the `elixir` module. |
### 設定例
```toml
# ~/.config/starship.toml
[elixir]
symbol = "🔮 "
```
2020-02-07 21:47:30 +00:00
## Elm
2020-04-03 16:35:39 +00:00
The `elm` module shows the currently installed version of Elm. 次の条件のいずれかが満たされると、モジュールが表示されます。
2020-02-07 21:47:30 +00:00
2020-04-03 16:35:39 +00:00
- 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
2020-02-07 21:47:30 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------- | ----------------------------------------------------- |
| `symbol` | `"🌳 "` | The symbol used before displaying the version of Elm. |
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `elm` module. |
2020-02-07 21:47:30 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[elm]
symbol = " "
```
2020-04-03 16:35:39 +00:00
## Environment Variable
2019-10-04 08:57:43 +00:00
2020-04-03 16:35:39 +00:00
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:
2019-09-28 11:31:56 +00:00
2020-04-03 16:35:39 +00:00
- The `variable` configuration option matches an existing environment variable
- The `variable` configuration option is not defined, but the `default` configuration option is
2019-09-28 11:31:56 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ---------------- | ---------------------------------------------------------------------------- |
| `symbol` | | The symbol used before displaying the variable value. |
| `variable` | | The environment variable to be displayed. |
| `default` | | The default value to be displayed when the selected variable is not defined. |
| `prefix` | `""` | Prefix to display immediately before the variable value. |
| `suffix` | `""` | Suffix to display immediately after the variable value. |
| `style` | `"dimmed black"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `env_var` module. |
2019-09-28 11:31:56 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[env_var]
variable = "SHELL"
default = "unknown shell"
```
2020-04-03 16:35:39 +00:00
## Git Branch
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
The `git_branch` module shows the active branch of the repo in your current directory.
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | --------------- | ------------------------------------------------------------------------------------- |
| `symbol` | `" "` | The symbol used before the branch name of the repo in your current directory. |
| `truncation_length` | `2^63 - 1` | Truncates a git branch to X graphemes |
| `truncation_symbol` | `"…"` | The symbol used to indicate a branch name was truncated. You can use "" for no symbol |
| `style` | `"bold purple"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `git_branch` module. |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_branch]
symbol = "🌱 "
2019-10-21 14:42:08 +00:00
truncation_length = 4
2019-09-12 19:41:23 +00:00
truncation_symbol = ""
```
2020-04-03 16:35:39 +00:00
## Git Commit
2019-12-06 22:07:57 +00:00
2020-04-03 16:35:39 +00:00
The `git_commit` module shows the current commit hash of the repo in your current directory.
2019-12-06 22:07:57 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| -------------------- | -------------- | ----------------------------------------------------- |
| `commit_hash_length` | `7` | The length of the displayed git commit hash. |
| `prefix` | `"("` | Prefix to display immediately before git commit. |
| `suffix` | `")"` | Suffix to display immediately after git commit. |
| `style` | `"bold green"` | モジュールのスタイルです。 |
| `only_detached` | `true` | Only show git commit hash when in detached HEAD state |
| `disabled` | `false` | Disables the `git_commit` module. |
2019-12-06 22:07:57 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_commit]
commit_hash_length = 4
```
2020-04-03 16:35:39 +00:00
## Git State
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
The `git_state` module will show in directories which are part of a git repository, and where there is an operation in progress, such as: _REBASING_ , _BISECTING_ , etc. If there is progress information (e.g., REBASING 3/10), that information will be shown too.
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------------ | ------------------ | ---------------------------------------------------------------------------------------------------------------- |
| `rebase` | `"REBASING"` | The text displayed when a `rebase` is in progress. |
| `merge` | `"MERGING"` | The text displayed when a `merge` is in progress. |
| `revert` | `"REVERTING"` | The text displayed when a `revert` is in progress. |
| `cherry_pick` | `"CHERRY-PICKING"` | The text displayed when a `cherry-pick` is in progress. |
| `bisect` | `"BISECTING"` | The text displayed when a `bisect` is in progress. |
| `am` | `"AM"` | The text displayed when an `apply-mailbox` (`git am`) is in progress. |
| `am_or_rebase` | `"AM/REBASE"` | The text displayed when an ambiguous `apply-mailbox` or `rebase` is in progress. |
| `progress_divider` | `"/"` | The symbol or text which will separate the current and total progress amounts. (e.g., `" of "` , for `"3 of 10"` ) |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `git_state` module. |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_state]
progress_divider = " of "
cherry_pick = "🍒 PICKING"
```
2020-04-03 16:35:39 +00:00
## Git Status
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
The `git_status` module shows symbols representing the state of the repo in your current directory.
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------------ | -------------------------- | ------------------------------------------------------- |
| `conflicted` | `"="` | This branch has merge conflicts. |
| `conflicted_count` | [link ](#git-status-counts ) | Show and style the number of conflicts. |
| `ahead` | `"⇡"` | This branch is ahead of the branch being tracked. |
| `behind` | `"⇣"` | This branch is behind of the branch being tracked. |
| `diverged` | `"⇕"` | This branch has diverged from the branch being tracked. |
| `untracked` | `"?"` | There are untracked files in the working directory. |
| `untracked_count` | [link ](#git-status-counts ) | Show and style the number of untracked files. |
| `stashed` | `"$"` | A stash exists for the local repository. |
| `stashed_count` | [link ](#git-status-counts ) | Show and style the number of stashes. |
| `modified` | `"!"` | There are file modifications in the working directory. |
| `modified_count` | [link ](#git-status-counts ) | Show and style the number of modified files. |
| `staged` | `"+"` | A new file has been added to the staging area. |
| `staged_count` | [link ](#git-status-counts ) | Show and style the number of files staged files. |
| `renamed` | `"»"` | A renamed file has been added to the staging area. |
| `renamed_count` | [link ](#git-status-counts ) | Show and style the number of renamed files. |
| `deleted` | `"✘"` | A file's deletion has been added to the staging area. |
| `deleted_count` | [link ](#git-status-counts ) | Show and style the number of deleted files. |
| `show_sync_count` | `false` | Show ahead/behind count of the branch being tracked. |
| `prefix` | `[` | Prefix to display immediately before git status. |
| `suffix` | `]` | Suffix to display immediately after git status. |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `git_status` module. |
2019-11-29 19:47:23 +00:00
#### Git Statusのカウント
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| --------- | ------- | ------------------------------------------------------ |
| `enabled` | `false` | Show the number of files |
| `style` | | Optionally style the count differently than the module |
2019-11-02 11:12:46 +00:00
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_status]
conflicted = "🏳"
ahead = "🏎💨"
behind = "😰"
diverged = "😵"
untracked = "🤷"
stashed = "📦"
modified = "📝"
2019-11-02 11:12:46 +00:00
staged.value = "++"
staged.style = "green"
staged_count.enabled = true
staged_count.style = "green"
2019-09-12 19:41:23 +00:00
renamed = "👅"
deleted = "🗑"
```
## Golang
2020-04-03 16:35:39 +00:00
The `golang` module shows the currently installed version of Golang. 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
- The current directory contains a `go.mod` file
- The current directory contains a `go.sum` file
- The current directory contains a `glide.yaml` file
- The current directory contains a `Gopkg.yml` file
- The current directory contains a `Gopkg.lock` file
- The current directory contains a `Godeps` directory
- The current directory contains a file with the `.go` extension
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------- | -------------------------------------------------------- |
| `symbol` | `"🐹 "` | The symbol used before displaying the version of Golang. |
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `golang` module. |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[golang]
symbol = "🏎💨 "
```
2020-02-04 17:11:36 +00:00
## Haskell
The `haskell` module shows the currently installed version of Haskell Stack version. 次の条件のいずれかが満たされると、モジュールが表示されます。
2020-04-03 16:35:39 +00:00
- The current directory contains a `stack.yaml` file
2020-02-04 17:11:36 +00:00
### オプション
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | --------------------------------------------------------- |
| `symbol` | `"λ "` | The symbol used before displaying the version of Haskell. |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `haskell` module. |
### 設定例
```toml
# ~/.config/starship.toml
[haskell]
2020-02-07 21:47:30 +00:00
symbol = " "
2020-02-04 17:11:36 +00:00
```
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
## ホスト名
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`hostname` モジュールには、システムのホスト名が表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | --------------------- | --------------------------------------------------------------------------- |
| `ssh_only` | `true` | SSHセッションに接続されている場合にのみホスト名を表示します。 |
| `prefix` | `""` | ホスト名の直前に表示するprefixです。 |
| `suffix` | `""` | ホスト名の直後に表示するsuffixです。 |
| `trim_at` | `"."` | この文字が最初にマッチするまでをホスト名と認識します。 `"."` は最初の. までをホスト名として認識します。 `""` を指定した場合トリムしません。 |
| `style` | `"bold dimmed green"` | モジュールのスタイルです。 |
| `disabled` | `false` | `hostname` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[hostname]
ssh_only = false
prefix = "⟪"
suffix = "⟫"
2019-10-21 14:42:08 +00:00
trim_at = ".companyname.com"
2019-09-12 19:41:23 +00:00
disabled = false
```
2020-04-03 16:35:39 +00:00
## Java
The `java` module shows the currently installed version of Java. 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
- The current directory contains a `pom.xml` , `build.gradle.kts` or `build.sbt` file
- The current directory contains a file with the `.java` , `.class` , `.gradle` or `.jar` extension
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | -------------- | ------------------------------------------------------ |
| `symbol` | `"☕ "` | The symbol used before displaying the version of Java. |
| `style` | `"dimmed red"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `java` module. |
### 設定例
```toml
# ~/.config/starship.toml
[java]
symbol = "🌟 "
```
## Jobs
The `jobs` module shows the current number of jobs running. The module will be shown only if there are background jobs running. The module will show the number of jobs running if there is more than 1 job, or more than the `threshold` config value, if it exists.
### オプション
| 変数 | デフォルト | 説明 |
| ----------- | ------------- | ----------------------------------------------------- |
| `symbol` | `"✦"` | The symbol used before displaying the number of jobs. |
| `threshold` | `1` | Show number of jobs if exceeded. |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `jobs` module. |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[jobs]
symbol = "+ "
threshold = 4
```
2019-10-04 08:57:43 +00:00
## Kubernetes
2020-04-03 16:35:39 +00:00
Displays the current Kubernetes context name and, if set, the namespace from the kubeconfig file. The namespace needs to be set in the kubeconfig file, this can be done via `kubectl config set-context starship-cluster --namespace astronaut` . If the `$KUBECONFIG` env var is set the module will use that if not it will use the `~/.kube/config` .
2019-09-12 19:41:23 +00:00
2019-10-11 08:31:19 +00:00
::: tip
2019-10-21 14:42:08 +00:00
このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。
2019-10-11 08:31:19 +00:00
:::
2019-09-12 19:41:23 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------- | --------------------------------------------------- |
| `symbol` | `"☸ "` | The symbol used before displaying the Cluster info. |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `disabled` | `true` | Disables the `kubernetes` module |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[kubernetes]
symbol = "⛵ "
2020-04-03 16:35:39 +00:00
style = "dimmed green"
2019-10-11 08:31:19 +00:00
disabled = false
2019-10-04 08:57:43 +00:00
```
2020-04-03 16:35:39 +00:00
## Line Break
2019-10-04 08:57:43 +00:00
2020-04-03 16:35:39 +00:00
The `line_break` module separates the prompt into two lines.
2019-10-04 08:57:43 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------- | ------------------------------------------------------------------ |
| `disabled` | `false` | Disables the `line_break` module, making the prompt a single line. |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[line_break]
disabled = true
```
2020-04-03 16:35:39 +00:00
## Memory Usage
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
The `memory_usage` module shows current system memory and swap usage.
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
By default the swap usage is displayed if the total system swap is non-zero.
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
::: tip
2019-12-24 21:54:29 +00:00
2020-04-03 16:35:39 +00:00
このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。
2019-12-24 21:54:29 +00:00
2020-04-03 16:35:39 +00:00
:::
2019-12-24 21:54:29 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ----------------- | --------------------- | ------------------------------------------------------------- |
| `show_percentage` | `false` | Display memory usage as a percentage of the available memory. |
| `show_swap` | `true` | Display swap usage if total swap is non-zero. |
| `threshold` | `75` | Hide the memory usage unless it exceeds this percentage. |
| `symbol` | `"🐏 "` | The symbol used before displaying the memory usage. |
| `separator` | `" | "` | The symbol or text that will seperate the ram and swap usage. |
| `style` | `"bold dimmed white"` | モジュールのスタイルです。 |
| `disabled` | `true` | Disables the `memory_usage` module. |
2019-12-24 21:54:29 +00:00
### 設定例
```toml
# ~/.config/starship.toml
2020-04-03 16:35:39 +00:00
[memory_usage]
disabled = false
show_percentage = true
show_swap = true
threshold = -1
symbol = " "
separator = "/"
style = "bold dimmed green"
2019-12-24 21:54:29 +00:00
```
2020-04-03 16:35:39 +00:00
## Mercurial Branch
2019-10-04 08:57:43 +00:00
2020-04-03 16:35:39 +00:00
The `hg_branch` module shows the active branch of the repo in your current directory.
2019-10-04 08:57:43 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | --------------- | -------------------------------------------------------------------------------------------- |
| `symbol` | `" "` | The symbol used before the hg bookmark or branch name of the repo in your current directory. |
| `truncation_length` | `2^63 - 1` | Truncates the hg branch name to X graphemes |
| `truncation_symbol` | `"…"` | The symbol used to indicate a branch name was truncated. |
| `style` | `"bold purple"` | モジュールのスタイルです。 |
| `disabled` | `true` | Disables the `hg_branch` module. |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
2020-04-03 16:35:39 +00:00
[hg_branch]
symbol = "🌱 "
truncation_length = 4
truncation_symbol = ""
2019-10-04 08:57:43 +00:00
```
2020-04-03 16:35:39 +00:00
## Nix-shell
2020-02-07 21:47:30 +00:00
2020-04-03 16:35:39 +00:00
The `nix_shell` module shows the nix-shell environment. The module will be shown when inside a nix-shell environment.
2020-02-07 21:47:30 +00:00
### オプション
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ------------ | ------------ | ---------------------------------- |
| `use_name` | `false` | Display the name of the nix-shell. |
| `impure_msg` | `"impure"` | Customize the "impure" msg. |
| `pure_msg` | `"pure"` | Customize the "pure" msg. |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `nix_shell` module. |
2020-02-07 21:47:30 +00:00
### 設定例
```toml
# ~/.config/starship.toml
2020-04-03 16:35:39 +00:00
[nix_shell]
disabled = true
use_name = true
impure_msg = "impure shell"
pure_msg = "pure shell"
2020-02-07 21:47:30 +00:00
```
2019-09-12 19:41:23 +00:00
## NodeJS
2019-10-21 14:42:08 +00:00
`nodejs` モジュールは、現在インストールされているNodeJSのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントディレクトリに`package.json`ファイルが含まれている
- カレントディレクトリに`node_modules`ディレクトリが含まれている
- カレントディレクトリに`.js`の拡張子のファイルが含まれている
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | -------------- | ----------------------------- |
| `symbol` | `"⬢ "` | NodeJSのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold green"` | モジュールのスタイルです。 |
| `disabled` | `false` | `nodejs` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[nodejs]
symbol = "🤖 "
```
2019-10-21 14:42:08 +00:00
## パッケージのバージョン
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
`package` モジュールは、現在のディレクトリがパッケージのリポジトリである場合に表示され、現在のバージョンが表示されます。 The module currently supports `npm` , `cargo` , `poetry` , `composer` , and `gradle` packages.
2019-09-12 19:41:23 +00:00
- **npm** – `npm` パッケージバージョンは、現在のディレクトリにある`package.json`から抽出されます
- **cargo** – `cargo` パッケージバージョンは、現在のディレクトリにある`Cargo.toml`から抽出されます。
- **poetry** – `poetry` パッケージバージョンは、現在のディレクトリにある`pyproject.toml`から抽出されます
2019-12-14 23:46:45 +00:00
- **composer** – `composer` パッケージバージョンは、現在のディレクトリにある`composer.json`から抽出されます
2020-04-03 16:35:39 +00:00
- **gradle** – The `gradle` package version is extracted from the `build.gradle` present
2019-09-12 19:41:23 +00:00
> ⚠️ 表示されるバージョンは、パッケージマネージャーではなく、ソースコードが現在のディレクトリにあるパッケージのバージョンです。
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | ---------------------------- |
| `symbol` | `"📦 "` | パッケージのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
2019-12-06 22:07:57 +00:00
| `disabled` | `false` | `package` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[package]
symbol = "🎁 "
```
2019-12-06 22:07:57 +00:00
## PHP
2019-12-14 23:46:45 +00:00
`php` モジュールは、現在インストールされているPHPのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-12-06 22:07:57 +00:00
- カレントディレクトリに`composer.json`ファイルが含まれている
2019-12-14 23:46:45 +00:00
- カレントディレクトリに`.php`の拡張子のファイルが含まれている
2019-12-06 22:07:57 +00:00
### オプション
2020-02-04 17:11:36 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | -------------------------- |
| `symbol` | `"🐘 "` | PHPのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `php` モジュールを無効にします。 |
2019-12-06 22:07:57 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[php]
symbol = "🔹 "
```
2019-09-12 19:41:23 +00:00
## Python
2019-12-24 21:54:29 +00:00
`python` モジュールは、現在インストールされているPythonのバージョンを示します。
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
`pyenvversionname` が`true`に設定されている場合 、pyenvでのバージョン名が表示されます 。
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
それ以外の場合は、 `python --version` バージョン番号が表示され、アクティブになっている場合は現在のPython仮想環境が表示されます。
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントディレクトリに`.python-version`ファイルが含まれている
- カレントディレクトリに`requirements.txt`ファイルが含まれている
- カレントディレクトリに`pyproject.toml`ファイルが含まれている
- カレントディレクトリに`.py`の拡張子のファイルが含まれている
- カレントディレクトリに`Pipfile`ファイルが含まれている
2019-09-15 18:55:02 +00:00
- カレントディレクトリに`tox.ini`ファイルが含まれている
2019-11-29 19:47:23 +00:00
- 仮想環境がアクティブである
2019-09-12 19:41:23 +00:00
### オプション
2019-12-06 22:07:57 +00:00
| 変数 | デフォルト | 説明 |
| -------------------- | --------------- | ---------------------------------------------------- |
| `symbol` | `"🐍 "` | Pythonのバージョンを表示する前に使用される記号です。 |
| `pyenv_version_name` | `false` | pyenvを使用してPythonバージョンを取得します |
| `pyenv_prefix` | `"pyenv "` | pyenvバージョン表示の前のprefix( デフォルトの表示は`pyenv MY_VERSION`)です |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `python` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[python]
symbol = "👾 "
pyenv_version_name = true
pyenv_prefix = "foo "
```
## Ruby
2019-10-21 14:42:08 +00:00
`ruby` モジュールは、現在インストールされているRubyのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントディレクトリに`Gemfile`ファイルが含まれている
- カレントディレクトリに`.rb`の拡張子のファイルが含まれている
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | --------------------------- |
| `symbol` | `"💎 "` | Rubyのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `ruby` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[ruby]
symbol = "🔺 "
```
## Rust
2019-10-21 14:42:08 +00:00
`rust` モジュールには、現在インストールされているRustのバージョンが表示されます。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントディレクトリに`Cargo.toml`ファイルが含まれている
- カレントディレクトリに`.rs`の拡張子のファイルが含まれている
2019-10-21 14:42:08 +00:00
### オプション
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | --------------------------- |
| `symbol` | `"🦀 "` | Rustのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `rust` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
### 設定例
2019-09-12 19:41:23 +00:00
```toml
# ~/.config/starship.toml
[rust]
symbol = "⚙️ "
```
2020-04-03 16:35:39 +00:00
## Singularity
The `singularity` module shows the current singularity image, if inside a container and `$SINGULARITY_NAME` is set.
:::
### オプション
| 変数 | デフォルト | 説明 |
| ---------- | -------------------- | ------------------------------------------------ |
| `label` | `""` | Prefix before the image name display. |
| `prefix` | `"["` | Prefix to display immediately before image name. |
| `suffix` | `"]"` | Suffix to display immediately after image name. |
| `symbol` | `""` | The symbol used before the image name. |
| `style` | `"bold dimmed blue"` | モジュールのスタイルです。 |
| `disabled` | `false` | Disables the `singularity` module. |
### 設定例
```toml
# ~/.config/starship.toml
[singularity]
symbol = "📦 "
```
2019-12-14 23:46:45 +00:00
## Terraform
2019-09-12 19:41:23 +00:00
2019-12-14 23:46:45 +00:00
`terraform` モジュールには、現在選択されているterraformワークスペースとバージョンが表示されます。 デフォルトでは、Terraformのバージョンは表示されません。これは、多くのプラグインが使用されている場合、Terraformの現在のバージョンでは遅いためです。 次の条件のいずれかが満たされると、モジュールが表示されます。
- カレントディレクトリに`.terraform`フォルダが含まれている
- カレントディレクトリに`.tf`の拡張子のファイルが含まれている
### オプション
| 変数 | デフォルト | 説明 |
| -------------- | ------------ | --------------------------------------------- |
| `symbol` | `"💠 "` | Terraform ワークスペースを表示する前に使用される記号です。 |
| `show_version` | `false` | Terraformのバージョンを表示します。 大きなワークスペースでは非常に遅くなります。 |
| `style` | `"bold 105"` | モジュールのスタイルです。 |
| `disabled` | `false` | `terraform` モジュールを無効にします。 |
### 設定例
```toml
# ~/.config/starship.toml
[terraform]
symbol = "🏎💨 "
```
2019-12-24 21:54:29 +00:00
## 時刻
2019-12-14 23:46:45 +00:00
2019-12-24 21:54:29 +00:00
`time` モジュールは、現在の**現地**時間を示します。 `format` 設定は、時間の表示方法を制御するために[`chrono`](https://crates.io/crates/chrono)クレートによって使用されます。 使用可能なオプションを確認するには、[chrono strftimeのドキュメント](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html)をご覧ください。
2019-09-12 19:41:23 +00:00
2019-09-13 02:29:42 +00:00
::: tip
2019-09-28 11:31:56 +00:00
2019-12-24 21:54:29 +00:00
このモジュールはデフォルトで無効になっています。 有効にするには、設定ファイルで`disabled`を`false`に設定します。
2019-09-28 11:31:56 +00:00
2019-09-12 19:41:23 +00:00
:::
2019-10-21 14:42:08 +00:00
### オプション
2019-09-12 19:41:23 +00:00
2020-04-03 16:35:39 +00:00
| 変数 | デフォルト | 説明 |
| ----------------- | --------------- | ------------------------------------------------------------------------------------------------- |
| `use_12hr` | `false` | 12時間のフォーマットを有効にします。 |
| `format` | この表の下を参照してください | 時刻のフォーマットに使用される[クロノフォーマット文字列](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) です。 |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `utc_time_offset` | `"local"` | 使用するUTCオフセットを設定します。 -24から24までの間で設定可能です。 フロートが30/45分のタイムゾーンオフセットに対応できるようにします。 |
| `disabled` | `true` | `time` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
`use_12hr` が `true` の場合、`format` のデフォルトは `"%r"` です。 それ以外の場合、デフォルトは`"%T"`です。 `format` を手動で設定すると、`use_12hr`の設定が上書きされます。
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
### 設定例
2019-09-12 19:41:23 +00:00
```toml
# ~/.config/starship.toml
[time]
disabled = false
format = "🕙[ %T ]"
2020-04-03 16:35:39 +00:00
utc_time_offset = "-5"
2019-09-12 19:41:23 +00:00
```
2019-12-24 21:54:29 +00:00
## ユーザー名
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
`username` モジュールには、アクティブなユーザーのユーザー名が表示されます。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
- カレントユーザーがroot
- カレントユーザーが、ログインしているユーザーとは異なる
- ユーザーがSSHセッションとして接続されている
- `show_always` 変数がtrueに設定されている
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
### オプション
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
| 変数 | デフォルト | 説明 |
| ------------- | --------------- | ------------------------- |
| `style_root` | `"bold red"` | ユーザーがrootのときに使用されるスタイルです。 |
| `style_user` | `"bold yellow"` | 非rootユーザーに使用されるスタイルです。 |
| `show_always` | `false` | `username` モジュールを常に表示します。 |
| `disabled` | `false` | `username` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
2019-12-24 21:54:29 +00:00
### 設定例
2019-09-12 19:41:23 +00:00
```toml
# ~/.config/starship.toml
[username]
disabled = true
```