2019-09-11 15:57:24 +00:00
---
2019-09-28 11:31:56 +00:00
home: true
heroImage: /logo.svg
2020-02-04 17:11:36 +00:00
heroText:
2020-04-03 16:35:39 +00:00
tagline: シェル用の最小限の、非常に高速で、無限にカスタマイズ可能なプロンプトです!
2019-09-11 15:57:24 +00:00
actionText: Get Started →
2020-02-03 00:51:45 +00:00
actionLink: ./guide/
2020-02-04 17:11:36 +00:00
features:
-
title: 互換性優先
details: 一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。 あらゆるところで使用してください!
-
title: Rust 製
details: Rust の最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。
-
title: カスタマイズ可能
details: それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。
2019-09-11 15:57:24 +00:00
footer: ISC Licensed | Copyright © 2019-present Starship Contributors
2020-02-04 17:11:36 +00:00
#Used for the description meta tag, for SEO
metaTitle: "Starship: Cross-Shell Prompt"
2020-04-03 16:35:39 +00:00
description: Starship はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Bash, Fish, ZSH, Ion, PowerShellへ簡単にインストール出来ます。
2019-09-11 15:57:24 +00:00
---
< div class = "center" >
2019-12-14 23:46:45 +00:00
< video class = "demo-video" muted autoplay loop playsinline >
2019-09-11 15:57:24 +00:00
< source src = "/demo.webm" type = "video/webm" >
< source src = "/demo.mp4" type = "video/mp4" >
2019-09-28 11:31:56 +00:00
< / video >
2019-09-11 15:57:24 +00:00
< / div >
### クイックインストール
1. **Starship** のバイナリをインストール
2020-01-15 17:23:25 +00:00
#### 最新版のインストール
2019-09-11 15:57:24 +00:00
2020-01-15 17:23:25 +00:00
Shellを利用する
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
2019-09-28 11:31:56 +00:00
```
2019-09-11 15:57:24 +00:00
2020-01-15 17:23:25 +00:00
#### パッケージマネージャー経由でインストール
2019-09-11 15:57:24 +00:00
2020-01-15 17:23:25 +00:00
[ Homebrew ](https://brew.sh/ )の場合:
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
```sh
2019-12-24 21:54:29 +00:00
brew install starship
2019-09-28 11:31:56 +00:00
```
2019-09-11 15:57:24 +00:00
2020-02-04 17:11:36 +00:00
[ Scoop ](https://scoop.sh )の場合:
2019-09-11 15:57:24 +00:00
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
2019-09-28 11:31:56 +00:00
```
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
1. 初期化のためのスクリプトをシェルの設定ファイルに追加
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
#### Bash
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
`~/.bashrc` の最後に以下を追記してください
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
```sh
# ~/.bashrc
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
eval "$(starship init bash)"
```
2019-09-11 15:57:24 +00:00
2019-09-28 11:31:56 +00:00
#### Fish
`~/.config/fish/config.fish` の最後に以下を追記してください
```sh
# ~/.config/fish/config.fish
2019-10-29 03:48:45 +00:00
starship init fish | source
2019-09-28 11:31:56 +00:00
```
#### Zsh
`~/.zshrc` の最後に以下を追記してください
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
2019-10-21 14:42:08 +00:00
#### Powershell
2020-11-29 04:45:59 +00:00
Add the following to the end of `Microsoft.PowerShell_profile.ps1` . You can check the location of this file by querying the `$PROFILE` variable in PowerShell. Typically the path is `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` or `~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix.
2019-10-21 14:42:08 +00:00
```sh
Invoke-Expression (& starship init powershell)
```
2019-12-24 21:54:29 +00:00
#### Ion
2020-01-15 17:23:25 +00:00
`~/.config/ion/initrc ` の最後に次を追加してください
2019-12-24 21:54:29 +00:00
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```