mirror of
https://github.com/Llewellynvdm/starship.git
synced 2025-02-03 20:48:30 +00:00
home | heroImage | actionText | actionLink | footer |
---|---|---|---|---|
true | /logo.svg | Get Started → | /zh-TW/guide/ | ISC Licensed | Copyright © 2019-present Starship Contributors |
快速安裝
-
安裝 starship 執行檔:
如果你並非使用以下平台,請直接**下載編譯好的執行檔的壓縮檔**。
Homebrew
$ brew install starship
Rust (v1.38 或更高版本)
$ cargo install starship
Arch Linux (AUR)
Starship 在 AUR 中已經以
starship
這個名字存在。 請使用yay
或你喜歡的 AUR 幫手安裝。$ yay -S starship
Nix (不穩定)
$ nix-env --install starship
Termux
$ pkg install starship
-
將初始化腳本 (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)