1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-19 17:39:02 +00:00
starship/docs/zh-TW/README.md

115 lines
2.5 KiB
Markdown
Raw Normal View History

---
home: true
heroImage: /logo.svg
2020-02-04 17:11:36 +00:00
heroText:
tagline: The minimal, blazing-fast, and infinitely customizable prompt for any shell!
actionText: Get Started →
actionLink: ./guide/
2020-02-04 17:11:36 +00:00
features:
-
title: 兼容性優先
details: 能夠在最常見的作業系統之中最常見的 shell 上運作。 到處使用它吧!
-
title: 由 Rust 支持
details: 帶來同類最快速度以及 Rust 的安全性,讓你的提示字元盡可能快速與可靠。
-
title: 可客製化
details: 任何些微的細節都可以隨你喜愛地客製化,讓你的提示字元可以隨你所欲地最小化或是充滿各種特色。
footer: ISC Licensed | Copyright © 2019-present Starship Contributors
2020-02-04 17:11:36 +00:00
#Used for the description meta tag, for SEO
metaTitle: "Starship: Cross-Shell Prompt"
description: 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.
---
<div class="center">
<video class="demo-video" muted autoplay loop playsinline>
<source src="/demo.webm" type="video/webm">
<source src="/demo.mp4" type="video/mp4">
</video>
</div>
### 快速安裝
1. 安裝 **starship** 執行檔:
2019-12-24 21:54:29 +00:00
#### Install Latest Version
2019-12-24 21:54:29 +00:00
With Shell:
```sh
2019-12-24 21:54:29 +00:00
curl -fsSL https://starship.rs/install.sh | bash
```
2019-12-24 21:54:29 +00:00
#### Install via Package Manager
2019-12-24 21:54:29 +00:00
With [Homebrew](https://brew.sh/):
```sh
2019-12-24 21:54:29 +00:00
brew install starship
```
2020-02-04 17:11:36 +00:00
With [Scoop](https://scoop.sh):
2019-12-24 21:54:29 +00:00
```powershell
scoop install starship
```
1. 將初始化腳本 (script) 加入你的 shell 的設定檔:
#### Bash
將以下內容放到 `~/.bashrc` 的結尾:
```sh
# ~/.bashrc
eval "$(starship init bash)"
```
#### Fish
將以下內容放到 `~/.config/fish/config.fish` 的結尾:
```sh
# ~/.config/fish/config.fish
starship init fish | source
```
#### Zsh
將以下內容放到 `~/.zshrc` 的結尾:
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
#### Powershell
將以下內容放到 `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` 的結尾 (或是在 -Nix 上的 `~/.config/powershell/Microsoft.PowerShell_profile.ps1`)
```sh
# ~\Documents\PowerShell\Profile.ps1
2019-12-24 21:54:29 +00:00
Invoke-Expression (&starship init powershell)
```
2019-12-24 21:54:29 +00:00
#### Ion
Add the following to the end of `~/.config/ion/initrc`:
```sh
# ~/.config/ion/initrc
eval $(starship init ion)
```