兼容性优先
Starship 可以在常见的操作系统和 shell 上运行。 尝试着在各种地方使用它吧!
轻量、迅速、客制化的高颜值终端!
安装 starship 二进制文件:
使用 Shell 命令:
curl -sS https://starship.rs/install.sh | sh
要更新 Starship ,运行上面的脚本 将会在不改动 Starship 配置文件的情况下升级版本
使用 Homebrew:
brew install starship
使用 Winget:
winget install starship
将初始化脚本添加到您的 shell 的配置文件中:
在 ~/.bashrc
的最后,添加以下内容:
# ~/.bashrc
eval "$(starship init bash)"
在 ~/.config/fish/config.fish
的最后,添加以下内容:
# ~/.config/fish/config.fish
starship init fish | source
在 ~/.zshrc
的最后,添加以下内容:
# ~/.zshrc
eval "$(starship init zsh)"
将以下内容添加到 Microsoft.PowerShell_profile.ps1
。 你可以在 PowerShell 通过 $PROFILE
变量来查询文件的位置。 对于 -Nix 来说,通常文件路径是 ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1
或 ~/.config/powershell/Microsoft.PowerShell_profile.ps1
。
Invoke-Expression (&starship init powershell)
在 ~/.config/ion/initrc
的最后,添加以下内容:
# ~/.config/ion/initrc
eval $(starship init ion)
WARNING
仅支持 elvish 0.18 及更高的版本。
在 ~/.config/fish/rc.elv
的最后,添加以下内容:
# ~/.elvish/rc.elv
eval (starship init elvish)
在 ~/.tcshrc
的最后,添加以下内容:
# ~/.tcshrc
eval `starship init tcsh`
WARNING
这部分今后可能会改变。 Only Nushell v0.96+ is supported.
Add the following to the end of your Nushell configuration (find it by running $nu.config-path
in Nushell):
mkdir ($nu.data-dir | path join "vendor/autoload")
starship init nu | save -f ($nu.data-dir | path join "vendor/autoload/starship.nu")
在 ~/.xonshrc
的最后,添加以下内容:
# ~/.xonshrc
execx($(starship init xonsh))
您需要使用 Clink (v1.2.30+) 与 Cmd. 将以下文件添加到文件 starship.lua
中,并将此文件放置在 Clink脚本目录中:
-- starship.lua
load(io.popen('starship init cmd'):read("*a"))()