summaryrefslogtreecommitdiffstats
path: root/docs/README.md
blob: 72eb11cf3fa2e6bc74b8d6e730f69ce3c807b9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
home: true
heroImage: /logo.svg
actionText: Get Started →
actionLink: /guide/
footer: ISC Licensed | Copyright © 2019-present Matan Kushner
---

<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>
  </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>
  </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>
  </div>
</div>

### Quick Install

1. Install the **starship** binary:

    ```bash
    cargo install starship
    ```

1. Add the init script to your shell's config file:

    #### Bash / Zsh

    Add the following to the end of `~/.bashrc` or `~/.zshrc`:

    ```bash
    # ~/.bashrc or ~/.zshrc
    
    eval "$(starship init $0)"
    ```

    #### Fish

    Add the following to the end of `~/.config/fish/config.fish`:

    ```sh
    # ~/.config/fish/config.fish

    eval (starship init fish)
    ```