summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-12-17 16:46:43 -0500
committerMatan Kushner <hello@matchai.me>2019-12-17 16:46:43 -0500
commite078bf472722e604783fa293d7b7e629b0bad0d0 (patch)
treedcb9b71c9986998d2d630c841e348e500977a689 /docs
parenta07ca8353fb6505d85a617fd1db4593184d33880 (diff)
docs: Make website docs consistent with README.md
Diffstat (limited to 'docs')
-rw-r--r--docs/README.md41
1 files changed, 20 insertions, 21 deletions
diff --git a/docs/README.md b/docs/README.md
index dbe1ad60e..fdecab04f 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -32,38 +32,26 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
1. Install the **starship** binary:
- **[Download archives of precompiled binaries](https://github.com/starship/starship/releases)** if you don't use the platforms below.
+ #### Install Latest Version
- #### Homebrew
+ ##### With Shell:
```sh
- $ brew install starship
+ curl -fsSL https://starship.rs/install.sh | bash
```
- #### Rust (v1.38 or higher)
+ #### Install via Package Manager
- ```sh
- $ cargo install starship
- ```
-
- #### Arch Linux (AUR)
-
- Starship is available on the AUR under the name `starship`. Install it with `yay` or your favorite AUR helper.
-
- ```sh
- $ yay -S starship
- ```
-
- #### Nix (unstable)
+ ##### With [Homebrew](https://brew.sh/):
```sh
- $ nix-env --install starship
+ brew install starship
```
- #### Termux
+ ##### With [Scoop](https://scoop.sh):
- ```sh
- $ pkg install starship
+ ```powershell
+ scoop install starship
```
1. Add the init script to your shell's config file:
@@ -104,5 +92,16 @@ footer: ISC Licensed | Copyright © 2019-present Starship Contributors
```sh
# ~\Documents\PowerShell\Profile.ps1
+
Invoke-Expression (&starship init powershell)
```
+
+ #### Ion
+
+ Add the following to the end of `~/.config/ion/initrc`:
+
+ ```sh
+ # ~/.config/ion/initrc
+
+ eval $(starship init ion)
+ ```