mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
.. | ||
advanced-config | ||
config | ||
faq | ||
guide | ||
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 はミニマルで、非常に高速で、カスタマイズ性の高い、あらゆるシェルのためのプロンプトです! ミニマルかつ洗練された形で、あなたに必要な情報を表示します。 Bash, Fish, ZSH, Ion, PowerShellへ簡単にインストール出来ます。 |
クイックインストール
-
Starship のバイナリをインストール
最新版のインストール
Shellを利用する
curl -fsSL https://starship.rs/install.sh | bash
パッケージマネージャー経由でインストール
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
~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
(それか Nix上の~/.config/powershell/Microsoft.PowerShell_profile.ps1
)の末尾に以下を追加してください。# ~\Documents\PowerShell\Profile.ps1 Invoke-Expression (&starship init powershell)
Ion
~/.config/ion/initrc
の最後に次を追加してください# ~/.config/ion/initrc eval $(starship init ion)