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 | The minimal, blazing-fast, and infinitely customizable prompt for any shell! | 入门 → | ./guide/ |
|
ISC Licensed | Copyright © 2019-present Starship Contributors | Starship:可用于各种 Shell 的提示符 | Starship is the minimal, blazing fast, and extremely customizable prompt for any shell! Shows the information you need, while staying sleek and minimal. Quick installation available for Bash, Fish, ZSH, Ion, and PowerShell. |
快速安装
-
安装 starship 二进制文件:
安装最新版本
使用 Shell 命令:
curl -fsSL https://starship.rs/install.sh | bash
通过软件包管理器安装
使用 Homebrew:
brew install starship
使用 Scoop:
scoop install starship
-
将初始化脚本添加到您的 shell 的配置文件:
Bash
在
~/.bashhrc
的最后,添加以下内容:# ~/.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)