4.1 KiB
home | heroImage | heroText | tagline | actionText | actionLink | features | footer | metaTitle | description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
true | /logo.svg | 轻量级、反应迅速,可定制的高颜值终端! | 入门 → | ./guide/ |
|
ISC Licensed | Copyright © 2019-present Starship Contributors | Starship:可用于各种 Shell 的提示符 | Starship是一款轻量级、反应迅速、可自定义的高颜值终端! Shows the information you need, while staying sleek and minimal. 可以为Bash、Fish、ZSH、Ion、Tcsh、Elvish、Nu、Xonsh、Cmd和PowerShell执行快速安装。 |
前置要求
- 安装并在你的终端启用 Nerd Font 。
快速安装
-
安装 starship 二进制文件:
安装最新版本
使用 Shell 命令:
curl -sS https://starship.rs/install.sh | sh
自更新 Starship ,运行下面脚本 将会在不改动 Starship 配置文件的情况下升级版本
通过软件包管理器安装
使用 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)
Elvish
::: warning
Only elvish v0.18 or higher is supported.
:::
在
~/.config/fish/rc.elv
的最后,添加以下内容:# ~/.elvish/rc.elv eval (starship init elvish)
Tcsh
在
~/.bashhrc
的最后,添加以下内容:# ~/.tcshrc eval `starship init tcsh`
Nushell
::: warning
This will change in the future. Only Nushell v0.61+ is supported.
:::
Add the following to to the end of your Nushell env file (find it by running
$nu.env-path
in Nushell):mkdir ~/.cache/starship starship init nu | save ~/.cache/starship/init.nu
And add the following to the end of your Nushell configuration (find it by running
$nu.config-path
):source ~/.cache/starship/init.nu
Xonsh
在
~/.bashhrc
的最后,添加以下内容:# ~/.xonshrc execx($(starship init xonsh))
Cmd
您需要使用 Clink (v1.2.30+) 与 Cmd. 将以下文件添加到文件
starship.lua
中,并将此文件放置在 Clink脚本目录中:-- starship.lua load(io.popen('starship init cmd'):read("*a"))()