1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-16 16:29:02 +00:00
starship/docs/zh-TW
Matan Kushner 754c3292ee
docs(i18n): Update translations (#848)
- Fix some broken markup on README.md
2020-01-20 13:04:11 -05:00
..
advanced-config docs(i18n): Update Crowdin translations (#517) 2019-10-21 23:42:08 +09:00
config docs(i18n): Update translated docs (#792) 2020-01-15 12:23:25 -05:00
faq docs: Correct a typo in the FAQs (#732) 2019-12-13 15:26:23 -05:00
guide docs(i18n): Update translations (#848) 2020-01-20 13:04:11 -05:00
presets docs(i18n): Update translations (#735) 2019-12-24 16:54:29 -05:00
README.md docs(i18n): Update translations (#735) 2019-12-24 16:54:29 -05:00

home heroImage actionText actionLink footer
true /logo.svg Get Started → /zh-TW/guide/ ISC Licensed | Copyright © 2019-present Starship Contributors

兼容性優先

能夠在最常見的作業系統之中最常見的 shell 上運作。 到處使用它吧!

由 Rust 支持

帶來同類最快速度以及 Rust 的安全性,讓你的提示字元盡可能快速與可靠。

可客製化

任何些微的細節都可以隨你喜愛地客製化,讓你的提示字元可以隨你所欲地最小化或是充滿各種特色。

快速安裝

  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

    將以下內容放到 ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 的結尾 (或是在 -Nix 上的 ~/.config/powershell/Microsoft.PowerShell_profile.ps1)

    # ~\Documents\PowerShell\Profile.ps1
    
    Invoke-Expression (&starship init powershell)
    

    Ion

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

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