summaryrefslogtreecommitdiffstats
path: root/docs/zh-CN/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/zh-CN/README.md')
-rw-r--r--docs/zh-CN/README.md40
1 files changed, 25 insertions, 15 deletions
diff --git a/docs/zh-CN/README.md b/docs/zh-CN/README.md
index 7cd8a78c5..38c0329e5 100644
--- a/docs/zh-CN/README.md
+++ b/docs/zh-CN/README.md
@@ -1,23 +1,23 @@
---
home: true
heroImage: /logo.svg
-actionText: Get Started →
+actionText: 入门 →
actionLink: /guide/
footer: ISC Licensed | Copyright © 2019-present Starship Contributors
---
<div class="features">
<div class="feature">
- <h2>Compatibility First</h2>
- <p>Works on the most common shells on the most common operating systems. Use it everywhere!</p>
+ <h2>注重兼容性</h2>
+ <p>能在各种常见的 Shell 上运行。 尝试着在各种地方使用它吧!</p>
</div>
<div class="feature">
- <h2>Rust-Powered</h2>
- <p>Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.</p>
+ <h2>Rust 制造</h2>
+ <p>具有 Rust 独树一帜的速度与安全性。</p>
</div>
<div class="feature">
- <h2>Customizable</h2>
- <p>Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.</p>
+ <h2>可自定义</h2>
+ <p>每个小细节都可以按您喜欢的自定义,不论是最小化以求速度,还是最大化以获得最完善的功能。</p>
</div>
</div>
@@ -28,11 +28,11 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
</video>
</div>
-### Quick Install
+### 快速安装
-1. Install the **starship** binary:
+1. 安装 **starship** 二进制文件:
- **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below.
+ 如果您不使用下面的平台,你可以**[下载预编译的可执行文件](https://github.com/starship/starship/releases)**
#### Homebrew
@@ -51,7 +51,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
#### Arch Linux (AUR)
- Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper.
+ Starship可在AUR下以 `starship`"之名使用 使用`yay`或你最偏爱的AUR helper来安装。
```sh
$ yay -S starship
@@ -71,12 +71,12 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
$ pkg install starship
```
-1. Add the init script to your shell's config file:
+1. 将初始化脚本添加到您的 shell 的配置文件:
#### Bash
- Add the following to the end of `~/.bashrc`:
+ 在 `~/.bashhrc` 的最后,添加以下内容:
```sh
# ~/.bashrc
@@ -87,7 +87,7 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
#### Fish
- Add the following to the end of `~/.config/fish/config.fish`:
+ 在 `~/.config/fish/config.fish` 的最后,添加以下内容:
```sh
# ~/.config/fish/config.fish
@@ -98,10 +98,20 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
#### Zsh
- Add the following to the end of `~/.zshrc`:
+ 在 `~/.zshrc` 的最后,添加以下内容:
```sh
# ~/.zshrc
eval "$(starship init zsh)"
```
+
+
+ #### Powershell
+
+ 添加 `~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1` (或者`~/.config/powershell/Microsoft.PowerShell_profile.ps1` on -Nix)到:
+
+ ```sh
+ # ~\Documents\PowerShell\Profile.ps1
+ Invoke-Expression (&starship init powershell)
+ ```