.. | ||
advanced-config | ||
config | ||
faq | ||
guide | ||
installing | ||
migrating-to-0.45.0 | ||
presets | ||
README.md |
home | heroImage | heroText | tagline | actionText | actionLink | features | footer | metaTitle | description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true | /logo.svg | シェル用の最小限の、非常に高速で、無限にカスタマイズ可能なプロンプトです! | Get Started → | ./guide/ |
|
ISC Licensed | Copyright © 2019-present Starship Contributors | Starship: Cross-Shell Prompt | Starship はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Quick installation available for Bash, Fish, ZSH, Ion, Tcsh, Elvish, Nu, Xonsh, and PowerShell. |
必要なもの
- Nerd Fontの一つがインストールされていて、ターミナルで有効になっていること。
クイックインストール
-
Starship のバイナリをインストール
最新版のインストール
Shellを利用する
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
Starship自体を更新するには、上記のスクリプトを再度実行してください。 最新のバージョンに置き換わり、設定ファイルには変更を加えません。
パッケージマネージャー経由でインストール
Homebrew の場合:
brew install starship
Scoop の場合:
scoop install starship
-
初期化のためのスクリプトをシェルの設定ファイルに追加
Bash
~/.bashrc
の最後に以下を追記してください# ~/.bashrc eval "$(starship init bash)"
Fish
~/.config/fish/config.fish
の最後に以下を追記してください# ~/.config/fish/config.fish starship init fish | source
Zsh
~/.zshrc
の最後に以下を追記してください# ~/.zshrc eval "$(starship init zsh)"
Powershell
Microsoft.PowerShell_profile.ps1
の最後に以下を追記してください。 PowerShell 上で$PROFILE
変数を問い合わせると、ファイルの場所を確認できます。 通常、パスは~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
または -Nix 上では~/.config/powershell/Microsoft.PowerShell_profile.ps1
です。Invoke-Expression (&starship init powershell)
Ion
~/.config/ion/initrc
の最後に次を追加してください# ~/.config/ion/initrc eval $(starship init ion)
Elvish
::: warning elvish v0.15以上のみサポートされています。 :::
~/.elvish/rc.elv
の最後に以下を追記してください。# ~/.elvish/rc.elv eval (starship init elvish)
Tcsh
~/.tcshrc
の最後に以下を追加します:# ~/.tcshrc eval `starship init tcsh`
Nushell
::: warning This will change in the future. Only nu version v0.33 or higher is supported. ::: Add the following to your nu config file. You can check the location of this file by running
config path
in nu.startup = [ "mkdir ~/.cache/starship", "starship init nu | save ~/.cache/starship/init.nu", "source ~/.cache/starship/init.nu" ] prompt = "starship_prompt"
Xonsh
Add the following to the end of
~/.xonshrc
:# ~/.xonshrc execx($(starship init xonsh))