mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 12:57:50 +00:00
.. | ||
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 | 轻量级、反应迅速,可定制的高颜值终端! | 入门 → | ./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
将以下内容添加到
Microsoft.PowerShell_profile.ps1
。 你可以在 PowerShell 通过$PROFILE
变量来查询文件的位置。 对于 -Nix 来说,通常文件路径是~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
或~/.config/powershell/Microsoft.PowerShell_profile.ps1
。Invoke-Expression (&starship init powershell)
Ion
在
~/.config/ion/initrc
的最后,添加以下内容:# ~/.config/ion/initrc eval $(starship init ion)