1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-27 12:03:30 +00:00
starship/docs/zh-TW
2020-11-28 23:45:59 -05:00
..
advanced-config docs(i18n): New Crowdin translations (#1366) 2020-07-23 17:07:10 -04:00
config docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
faq docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00
guide docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
migrating-to-0.45.0 docs(i18n): new Crowdin updates (#1719) 2020-10-13 15:09:01 -04:00
presets docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00
README.md docs(i18n): New Crowdin updates (#1788) 2020-11-28 23:45:59 -05:00

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg The minimal, blazing-fast, and infinitely customizable prompt for any shell! Get Started → ./guide/
title details
兼容性優先 能夠在最常見的作業系統之中最常見的 shell 上運作。 到處使用它吧!
title details
由 Rust 支持 帶來同類最快速度以及 Rust 的安全性,讓你的提示字元盡可能快速與可靠。
title details
可客製化 任何些微的細節都可以隨你喜愛地客製化,讓你的提示字元可以隨你所欲地最小化或是充滿各種特色。
ISC Licensed | Copyright © 2019-present Starship Contributors Starship: Cross-Shell Prompt 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.

快速安裝

  1. 安裝 starship 執行檔:

    Install Latest Version

    With Shell:

    curl -fsSL https://starship.rs/install.sh | bash
    

    Install via Package Manager

    With Homebrew:

    brew install starship
    

    With Scoop:

    scoop install starship
    
  2. 將初始化腳本 (script) 加入你的 shell 的設定檔:

    Bash

    將以下內容放到 ~/.bashrc 的結尾:

    # ~/.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

    Add the following to the end of Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the $PROFILE variable in PowerShell. Typically the path is ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix.

    Invoke-Expression (&starship init powershell)
    

    Ion

    Add the following to the end of ~/.config/ion/initrc:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)