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
```shell
$ touch ~/.config/starship.toml
```
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
```
### 用語
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
2019-09-28 11:31:56 +00:00
スタイリングがどのように見えるかは、端末エミュレータによって制御されることに注意してください。 たとえば、一部の端末エミュレータはテキストを太字にする代わりに色を明るくします。また、一部のカラーテーマは通常の色と明るい色と同じ値を使用します。また、斜体のテキストを取得するには、端末で斜体をサポートする必要があります。スタイリングがどのように見えるかは、端末エミュレータによって制御されることに注意してください。たとえば、一部の端末エミュレータはテキストを太字にする代わりに色を明るくします。また、一部のカラーテーマは通常の色と明るい色と同じ値を使用します。 また、斜体のテキストを取得するには、端末で斜体をサポートする必要があります。
2019-09-12 19:41:23 +00:00
## プロンプト
これは、プロンプト全体のオプションのリストです。
### オプション
2019-09-28 11:31:56 +00:00
| 変数 | デフォルト | 説明 |
| -------------- | ----------------------- | ------------------------ |
| `add_newline` | `true` | プロンプトの開始前に新しい行を追加します。 |
| `prompt_order` | [link ](#デフォルトのプロンプト表示順 ) | プロンプトモジュールを出力する順序を設定します。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
# プロンプト表示の改行を無効にする
add_newline = false
# デフォルトのプロンプト表示順を書き換える
prompt_order=["rust","line_break","package","line_break","character"]
```
### デフォルトのプロンプト表示順
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",
"git_state",
"git_status",
"package",
2019-10-04 08:57:43 +00:00
"dotnet",
"golang",
"java",
2019-09-12 19:41:23 +00:00
"nodejs",
2019-10-04 08:57:43 +00:00
"python",
2019-09-12 19:41:23 +00:00
"ruby",
"rust",
"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",
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-10-21 14:42:08 +00:00
The `aws` module shows the current AWS region and profile. This is based on `AWS_REGION` , `AWS_DEFAULT_REGION` , and `AWS_PROFILE` env var with `~/.aws/config` file.
2019-09-28 11:31:56 +00:00
### オプション
| 変数 | デフォルト | 説明 |
| ---------- | --------------- | ----------------------------- |
2019-10-21 14:42:08 +00:00
| `symbol` | `"☁️ "` | 現在のAWSプロファイルを表示する前に表示される記号です。 |
2019-09-28 11:31:56 +00:00
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `aws` モジュールを無効にします。 |
### 設定例
```toml
# ~/.config/starship.toml
[aws]
style = "bold blue"
symbol = "🅰 "
```
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
### バッテリーの表示
2019-09-28 11:31:56 +00:00
`display< / 0 > オプションを使用して、バッテリーインジケーターを表示するタイミング(閾値)と外観(スタイル)を定義します。
< code > 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
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | --------------- | --------------------------- |
| `min_time` | `2` | 時間を表示する最短期間です。 |
| `prefix` | `took` | コマンド実行時間の直前に表示する文字列です。 |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `cmd_duration` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[cmd_duration]
min_time = 4
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-10-21 14:42:08 +00:00
`$CONDA_DEFAULT_ENV` が設定されている場合、`conda`モジュールは現在のcondaの環境を表示します。 Note: This does not suppress conda's own prompt modifier, you may want to run `conda config --set changeps1 False`
2019-09-12 19:41:23 +00:00
2019-10-11 08:31:19 +00:00
### オプション
2019-10-21 14:42:08 +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"
```
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-10-21 14:42:08 +00:00
fishスタイルのpwdオプションを使用すると、切り捨てられたパスを非表示にする代わりに、オプションで有効にした番号に基づいて各ディレクトリの短縮名が表示されます。
2019-10-11 08:31:19 +00:00
2019-10-21 14:42:08 +00:00
例として、`~/Dev/Nix/nixpkgs/pkgs`で、`nixpkgs`がリポジトリルートであり、オプションが`1`に設定されている場合を挙げます。 以前は`nixpkgs/pkgs`でしたが、`~/D/N/nixpkgs/pkgs`が表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | ------------- | ----------------------------- |
| `truncation_length` | `3` | 現在のディレクトリを切り捨てる親フォルダーの数です。 |
| `truncate_to_repo` | `true` | 現在いるgitリポジトリのルートに切り捨てるかどうかです。 |
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
| `disabled` | `false` | `directory` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
< details >
2019-10-21 14:42:08 +00:00
< summary > このモジュールは、どのようにディレクトリを表示するかについての高度なオプションをいくつか持っています。< / summary >
2019-09-28 11:31:56 +00:00
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| --------------------------- | ------ | -------------------------------------------- |
| `fish_style_pwd_dir_length` | `0` | fish shellのpwdパスロジックを適用するときに使用する文字数です。 |
| `use_logical_path` | `true` | OSからのパスの代わりに、シェル(`PWD`) によって提供される論理パスを表示します。 |
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
2019-10-21 14:42:08 +00:00
`dotnet` モジュールはカレントディレクトリに関係する.NET Core SDKのバージョンを表示します。 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
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
2019-10-21 14:42:08 +00:00
内部的に、このモジュールは自身のバージョン検知のメカニズムを利用します。 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
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ----------- | ------------- | ----------------------------------------------------- |
| `symbol` | `•NET "` | dotnetのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `heuristic` | `true` | Use faster version detection to keep starship snappy. |
| `disabled` | `false` | `dotnet` モジュールを無効にします。 |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[dotnet]
symbol = "🥅 "
style = "green"
heuristic = false
```
2019-10-21 14:42:08 +00:00
## 環境変数
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
`env_var` モジュールは、選択された環境変数の現在の値を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-28 11:31:56 +00:00
- `variable` オプションが、既存の環境変数と一致する
- `variable` オプションが定義されておらず、`default`オプションが定義されている
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ---------------- | ------------------------------------- |
| `symbol` | | 環境変数を表示する前に使用される記号です。 |
| `variable` | | 表示される環境変数です。 |
| `default` | | 上のvariableが定義されていない場合に表示されるデフォルトの値です。 |
| `prefix` | `""` | 変数の直前に表示するprefixです。 |
| `suffix` | `""` | 変数の直後に表示するsuffixです。 |
| `style` | `"dimmed black"` | モジュールのスタイルです。 |
| `disabled` | `false` | `env_var` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[env_var]
variable = "SHELL"
default = "unknown shell"
```
2019-10-21 14:42:08 +00:00
## Git ブランチ
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`git_branch` モジュールは、現在のディレクトリにあるリポジトリのアクティブなブランチを表示します。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ------------------- | --------------- | ------------------------------------------- |
| `symbol` | `" "` | 現在のディレクトリのリポジトリのブランチ名の前に使用されるシンボルです。 |
| `truncation_length` | `2^63 - 1` | gitブランチをX書記素に切り捨てます。 |
| `truncation_symbol` | `"…"` | ブランチ名切り捨てられていることを示すための記号です。 記号なしに「」も使用できます。 |
| `style` | `"bold purple"` | モジュールのスタイルです。 |
| `disabled` | `false` | `git_branch` モジュールを無効にします。 |
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 = ""
```
2019-10-21 14:42:08 +00:00
## Git の進行状態
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`git_state` モジュールはgitディレクトリの進行状態を表します。 (例: _REBASING_ , _BISECTING_ , その他) 進捗情報がある場合(例: REBASING 3/10)はその情報も表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ------------------ | ------------------ | --------------------------------------------------------- |
| `rebase` | `"REBASING"` | `rebase` 進行中に表示されるテキストです。 |
| `merge` | `"MERGING"` | `merge` 進行中に表示されるテキストです。 |
| `revert` | `"REVERTING"` | `revert` 進行中に表示されるテキストです。 |
| `cherry_pick` | `"CHERRY-PICKING"` | `cherry-pick` 進行中に表示されるテキストです。 |
| `bisect` | `"BISECTING"` | `disect` 進行中に表示されるテキストです。 |
| `am` | `"AM"` | `apply-mailbox` (`git am`)の進行中に表示されるテキストです。 |
| `am_or_rebase` | `"AM/REBASE"` | あいまいな`apply-mailbox`または`rebase`が進行中のときに表示されるテキストです。 |
| `progress_divider` | `"/"` | 現在の進行量と合計進行量を分ける記号またはテキストです。 (例: `" of "` 、 `"3 of 10"` ) |
| `style` | `"bold yellow"` | モジュールのスタイルです。 |
| `disabled` | `false` | `git_state` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_state]
progress_divider = " of "
cherry_pick = "🍒 PICKING"
```
2019-10-21 14:42:08 +00:00
## Git の状態
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`git_status` モジュールは、現在のディレクトリのリポジトリの状態を表すシンボルを表示します。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ----------------- | ------------ | ------------------------------ |
| `conflicted` | `"="` | このブランチにはマージの競合があります。 |
| `ahead` | `"⇡"` | このブランチは、追跡されるブランチよりも先にあります。 |
| `behind` | `"⇣"` | このブランチは、追跡されているブランチの背後にあります。 |
| `diverged` | `"⇕"` | このブランチは、追跡されているブランチから分岐しています。 |
| `untracked` | `"?"` | 作業ディレクトリに追跡されていないファイルがあります。 |
| `stashed` | `"$"` | ローカルリポジトリ用のスタッシュが存在します。 |
| `modified` | `"!"` | 作業ディレクトリにファイルの変更があります。 |
| `staged` | `"+"` | 新しいファイルがステージング領域に追加されました。 |
| `renamed` | `"»"` | 名前が変更されたファイルがステージング領域に追加されました。 |
| `deleted` | `"✘"` | ファイルの削除がステージング領域に追加されました。 |
| `show_sync_count` | `false` | 追跡されているブランチの先行/後方カウントを表示します。 |
| `prefix` | `[` | このモジュールの先頭に表示される文字列です。 |
| `suffix` | `]` | このモジュールの末尾に表示される文字列です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `git_status` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[git_status]
conflicted = "🏳"
ahead = "🏎💨"
behind = "😰"
diverged = "😵"
untracked = "🤷"
stashed = "📦"
modified = "📝"
staged = "➕ "
renamed = "👅"
deleted = "🗑"
```
## Golang
2019-10-21 14:42:08 +00:00
`golang` モジュールは、現在インストールされているGolangのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントディレクトリに`go.mod`ファイルが含まれている
- カレントディレクトリに`go.sum`ファイルが含まれている
- カレントディレクトリに`glide.yaml`ファイルが含まれている
- カレントディレクトリに`Gopkg.yml`ファイルが含まれている
- カレントディレクトリに`Gopkg.lock`ファイルが含まれている
- カレントディレクトリに`Godeps`ファイルが含まれている
- カレントディレクトリに`.go`の拡張子のファイルが含まれている
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------- | ----------------------------- |
| `symbol` | `"🐹 "` | Golangのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold cyan"` | モジュールのスタイルです。 |
| `disabled` | `false` | `golang` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[golang]
symbol = "🏎💨 "
```
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
```
2019-10-21 14:42:08 +00:00
## ジョブ
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`jobs` モジュールには、実行中のジョブの現在の数が表示されます。 このモジュールは、実行中のバックグラウンドジョブがある場合にのみ表示されます。 1つ以上のジョブがある、または`threshold`に指定した値以上にジョブがある場合は実行中のジョブの数を表示します。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ----------- | ------------- | ---------------------- |
| `symbol` | `"✦"` | ジョブの数を表示する前に使用される記号です。 |
| `threshold` | `1` | 超過した場合、ジョブの数を表示します。 |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `disabled` | `false` | `jobs` モジュールを無効にします。 |
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
2019-10-21 14:42:08 +00:00
現在のKubernetesコンテキスト名と、設定されている場合は、kubeconfigファイルに基づいてネームスペースを表示します。 ネームスペースはkubeconfigファイルで設定する必要があります。`kubectl config set-context starship-cluster --namespace
astronaut`。 `$KUBECONFIG` 環境変数が設定されている場合、モジュールはそれを使用します `~/.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
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------- | ------------------------- |
| `symbol` | `"☸ "` | クラスタ情報を表示する前に使用される記号です。 |
| `style` | `"bold blue"` | モジュールのスタイルです。 |
| `disabled` | `true` | `Kubernetes` モジュールを無効にします。 |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[kubernetes]
symbol = "⛵ "
style = "dim green"
2019-10-11 08:31:19 +00:00
disabled = false
2019-10-04 08:57:43 +00:00
```
2019-10-21 14:42:08 +00:00
## 改行
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
`line_break` モジュールは、プロンプトを2行に分割します。
2019-10-04 08:57:43 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------- | ------------------------------------- |
| `disabled` | `false` | `line_break` モジュールを無効にして、プロンプトを1行にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[line_break]
disabled = true
```
## Nix-shell
2019-10-21 14:42:08 +00:00
`nix_shell` モジュールは、nix-shell環境を示しています。 このモジュールは、nixシェル環境内にあるときに表示されます。
2019-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ------------ | ------------ | ------------------------ |
| `use_name` | `false` | nix-shellの名前を表示します。 |
| `impure_msg` | `impure` | impureメッセージをカスタマイズします。 |
| `pure_msg` | `pure` | pureメッセージをカスタマイズします。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `nix_shell` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[nix_shell]
disabled = true
use_name = true
impure_msg = "impure shell"
pure_msg = "pure shell"
```
2019-10-21 14:42:08 +00:00
## メモリ使用量
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
`memory_usage< / 0 > モジュールは、現在のシステムメモリとスワップ使用量を示します。< / p >
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
< p spaces-before = "0" > デフォルトでは、システムスワップの合計がゼロ以外の場合、スワップ使用量が表示されます。< / p >
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
< p spaces-before = "0" > ::: tip< / p >
2019-10-04 08:57:43 +00:00
2019-10-21 14:42:08 +00:00
< p spaces-before = "0" > このモジュールはデフォルトで無効になっています。
有効にするには、設定ファイルで< code > disabled`を`false`に設定します。
2019-10-04 08:57:43 +00:00
:::
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ----------------- | --------------------- | --------------------------------------------- |
| `show_percentage` | `false` | メモリ使用量を割合で表示します。 |
| `show_swap` | `true` | Display swap usage if total swap is non-zero. |
| `threshold` | `75` | この閾値を超えない限り、メモリ使用率は表示されません。 |
| `symbol` | `"🐏 "` | メモリ使用率を表示する前に使用される記号です。 |
| `style` | `"bold dimmed white"` | モジュールのスタイルです。 |
| `disabled` | `true` | `memory_usage` モジュールを無効にします。 |
2019-10-04 08:57:43 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[memory_usage]
show_percentage = true
show_swap = true
threshold = -1
2019-10-25 00:58:10 +00:00
symbol = " "
2019-10-04 08:57:43 +00:00
style = "bold dimmed green"
```
2019-09-28 11:31:56 +00:00
## Java
2019-10-21 14:42:08 +00:00
`java` モジュールは、現在インストールされているJavaのバージョンを示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-28 11:31:56 +00:00
2019-10-21 14:42:08 +00:00
- カレントディレクトリに`pom.xml`, `build.gradle` ,もしくは`build.sbt`が含まれている
2019-09-28 11:31:56 +00:00
- カレントディレクトリに拡張子が`.java`, `.class` , もしくは`.jar`のファイルが含まれている
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | -------------- | --------------------------- |
| `symbol` | `"☕ "` | Javaのバージョンを表示する前に使用される記号です。 |
| `style` | `"dimmed red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `Java` モジュールを無効にします。 |
2019-09-28 11:31:56 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[java]
symbol = "🌟 "
```
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
2019-10-21 14:42:08 +00:00
`package` モジュールは、現在のディレクトリがパッケージのリポジトリである場合に表示され、現在のバージョンが表示されます。 このモジュールは現在、 `npm` 、 `cargo` 、および`poetry`パッケージをサポートしています。
2019-09-12 19:41:23 +00:00
- **npm** – `npm` パッケージバージョンは、現在のディレクトリにある`package.json`から抽出されます
- **cargo** – `cargo` パッケージバージョンは、現在のディレクトリにある`Cargo.toml`から抽出されます。
- **poetry** – `poetry` パッケージバージョンは、現在のディレクトリにある`pyproject.toml`から抽出されます
> ⚠️ 表示されるバージョンは、パッケージマネージャーではなく、ソースコードが現在のディレクトリにあるパッケージのバージョンです。
### オプション
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
| ---------- | ------------ | ---------------------------- |
| `symbol` | `"📦 "` | パッケージのバージョンを表示する前に使用される記号です。 |
| `style` | `"bold red"` | モジュールのスタイルです。 |
| `disabled` | `false` | `package` モジュールを無効にします。 |
2019-09-12 19:41:23 +00:00
### 設定例
```toml
# ~/.config/starship.toml
[package]
symbol = "🎁 "
```
## Python
2019-10-21 14:42:08 +00:00
`python` モジュールは、現在インストールされているPythonのバージョンを示します。
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`pyenvversionname` が`true`に設定されている場合 、pyenvでのバージョン名が表示されます 。
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
それ以外の場合は、 `python --version` バージョン番号が表示され、アクティブになっている場合は現在のPython仮想環境が表示されます。
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +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-09-12 19:41:23 +00:00
### オプション
2019-10-21 14:42:08 +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 = "⚙️ "
```
2019-10-21 14:42:08 +00:00
## 時刻
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +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-10-21 14:42:08 +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
2019-10-21 14:42:08 +00:00
| 変数 | デフォルト | 説明 |
2019-10-11 08:31:19 +00:00
| ----------------- | ------------- | ------------------------------------------------------------------------------------------------------------------- |
| `12hr` | `false` | Enables 12 hour formatting |
| `format` | see below | The [chrono format string ](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html ) used to format the time. |
| `style` | `bold yellow` | The style for the module time |
| `disabled` | `true` | Disables the `time` module. |
| `utc_time_offset` | `local` | Sets the UTC offset to use. Range from -24 < x < 24 . Allows floats to accommodate 30 / 45 minute timezone offsets . |
2019-09-12 19:41:23 +00:00
2019-10-21 14:42:08 +00:00
`use_12hr` が`true`の場合、`format`のデフォルトは`"%r"`です。 それ以外の場合、デフォルトは`"%T"`です。 Manually setting `format` will override the `use_12hr` setting.
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 ]"
2019-10-11 08:31:19 +00:00
utc_time_offset = -5
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
`username` モジュールはアクティブなユーザーのユーザー名を表示します。 次の条件のいずれかが満たされると、モジュールが表示されます。
2019-09-12 19:41:23 +00:00
- カレントユーザーがroot
- カレントユーザーが、ログインしているユーザーとは異なる
- ユーザーがSSHセッションとして接続されている
2019-09-28 11:31:56 +00:00
- `show_always` 変数がtrueに設定されている
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
| Variable | Default | Description |
| ------------- | --------------- | ------------------------- |
| `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-10-21 14:42:08 +00:00
### 設定例
2019-09-12 19:41:23 +00:00
```toml
# ~/.config/starship.toml
[username]
disabled = true
```