starship/docs/zh-CN/README.md

4.1 KiB
Raw Blame History

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg 轻量级、反应迅速,可定制的高颜值终端! 入门 → ./guide/
title details
兼容性优先 Starship 可以在各种常见的操作系统和常见的 shell 上运行。 尝试着在各种地方使用它吧!
title details
使用 Rust 编写 具有 Rust 独树一帜的速度与安全性,使你的提示符尽可能的快速可靠。
title details
可自定义 每个小细节都可以按您喜欢的自定义,不论是最小化以求速度,还是最大化以获得最完善的功能。
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, Tcsh, Elvish, Nu, Xonsh, Cmd, and PowerShell.

前置要求

  • 安装并在你的终端启用一种 Nerd Font

快速安装

  1. 安装 starship 二进制文件:

    安装最新版本

    使用 Shell 命令:

    curl -sS https://starship.rs/install.sh | sh
    

    自更新 Starship ,运行下面脚本 将会在不改动 Starship 配置文件的情况下升级版本

    通过软件包管理器安装

    使用 Homebrew

    brew install starship
    

    使用 Scoop

    scoop install starship
    
  2. 将初始化脚本添加到您的 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 警告 只支持 elvish v0.18 及以上。 :::

    ~/.config/fish/rc.elv 的最后,添加以下内容:

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)
    

    Tcsh

    ~/.bashhrc 的最后,添加以下内容:

    # ~/.tcshrc
    
    eval `starship init tcsh`
    

    Nushell

    ::: warning 警告 将来可能会改变。 Only Nushell v0.60+ is supported. ::: Run the following:

    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):

    mkdir ~/.cache/starship
    starship init nu | save ~/.cache/starship/init.nu
    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"))()