mirror of
https://github.com/starship/starship.git
synced 2026-06-22 02:02:12 +07:00
home, heroImage, heroText, tagline, actionText, actionLink, features, footer, metaTitle, description
| 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 はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Bash, Fish, ZSH, Ion, PowerShellへ簡単にインストール出来ます。 |
クイックインストール
-
Starship のバイナリをインストール
最新版のインストール
Shellを利用する
curl -fsSL https://starship.rs/install.sh | bashパッケージマネージャー経由でインストール
Homebrew の場合:
brew install starshipScoop の場合:
scoop install starship -
初期化のためのスクリプトをシェルの設定ファイルに追加
Bash
~/.bashrcの最後に以下を追記してください# ~/.bashrc eval "$(starship init bash)"Fish
~/.config/fish/config.fishの最後に以下を追記してください# ~/.config/fish/config.fish starship init fish | sourceZsh
~/.zshrcの最後に以下を追記してください# ~/.zshrc eval "$(starship init zsh)"Powershell
Add the following to the end of
Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the$PROFILEvariable in PowerShell. Typically the path is~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1or~/.config/powershell/Microsoft.PowerShell_profile.ps1on -Nix.Invoke-Expression (&starship init powershell)Ion
~/.config/ion/initrcの最後に次を追加してください# ~/.config/ion/initrc eval $(starship init ion)Elvish
::: warning Only elvish v0.15 or higher is supported. :::
Add the following to the end of
~/.elvish/rc.elv:# ~/.elvish/rc.elv eval (starship init elvish)