starship/docs
Matan Kushner d79c47186d New translations readme.md (Indonesian) 2023-11-03 09:28:13 +09:00
..
.vuepress docs: fix symbols in nerd-font-symbols preset (#5254) 2023-06-28 11:06:23 +02:00
advanced-config docs(pwsh): use a more convenient method to update the window title (#5125) 2023-04-23 13:42:51 +02:00
ar-SA New translations readme.md (Arabic) 2023-11-02 18:23:26 +09:00
bn-BD New translations readme.md (Bengali) 2023-11-02 18:25:23 +09:00
ckb-IR New translations readme.md (Sorani (Kurdish)) 2023-11-02 18:24:52 +09:00
config docs(directory): specify option name in example (#5324) 2023-07-27 12:06:18 +02:00
de-DE New translations readme.md (German) 2023-11-03 09:26:46 +09:00
es-ES New translations readme.md (Spanish) 2023-11-03 09:26:20 +09:00
faq docs: fix typos (#4889) 2023-02-07 12:52:41 +01:00
fr-FR New translations readme.md (French) 2023-11-03 09:26:34 +09:00
guide docs: Add vuepress with initial docs (#99) 2019-07-19 16:18:52 -04:00
id-ID New translations readme.md (Indonesian) 2023-11-03 09:28:13 +09:00
installing fix(docs): fix and cleanup VuePress config (#3738) 2022-03-11 14:48:44 -06:00
it-IT New translations readme.md (Italian) 2023-11-02 18:23:38 +09:00
ja-JP New translations readme.md (Japanese) 2023-11-03 09:26:56 +09:00
ko-KR New translations readme.md (Korean) 2023-11-03 09:27:01 +09:00
migrating-to-0.45.0 ci: Use `dprint` to format documentation + TOML files (#3426) 2022-01-20 11:32:09 +03:00
nl-NL New translations readme.md (Dutch) 2023-11-02 18:23:56 +09:00
no-NO New translations readme.md (Norwegian) 2023-11-02 18:25:16 +09:00
pl-PL New translations readme.md (Polish) 2023-11-03 09:27:19 +09:00
presets fix(preset): add output-flag to avoid encoding issues (#4926) 2023-03-03 11:46:16 +01:00
pt-BR New translations readme.md (Portuguese, Brazilian) 2023-11-03 09:28:08 +09:00
pt-PT New translations readme.md (Portuguese) 2023-11-02 18:24:07 +09:00
ru-RU New translations readme.md (Russian) 2023-11-03 09:27:40 +09:00
tr-TR New translations readme.md (Turkish) 2023-11-03 09:27:46 +09:00
uk-UA New translations readme.md (Ukrainian) 2023-11-02 23:53:12 +09:00
vi-VN New translations readme.md (Vietnamese) 2023-11-03 09:28:02 +09:00
zh-CN New translations readme.md (Chinese Simplified) 2023-11-03 09:27:52 +09:00
zh-TW New translations readme.md (Chinese Traditional) 2023-11-03 09:27:57 +09:00
README.md feat: update the nushell init file and make it valid module and overlay (#5188) 2023-06-12 11:02:46 +02:00
package-lock.json Inline script for GA4 2023-06-06 19:23:58 -04:00
package.json Inline script for GA4 2023-06-06 19:23:58 -04:00

README.md

home heroImage heroText tagline actionText actionLink features footer metaTitle description
true /logo.svg null The minimal, blazing-fast, and infinitely customizable prompt for any shell! Get Started → ./guide/
title details
Compatibility First Works on the most common shells on the most common operating systems. Use it everywhere!
title details
Rust-Powered Brings the best-in-class speed and safety of Rust, to make your prompt as quick and reliable as possible.
title details
Customizable Every little detail is customizable to your liking, to make this prompt as minimal or feature-rich as you'd like it to be.
ISC Licensed | Copyright © 2019-present Starship Contributors Starship: Cross-Shell Prompt 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, Tcsh, Elvish, Nu, Xonsh, Cmd, and PowerShell.

Prerequisites

  • A Nerd Font installed and enabled in your terminal.

Quick Install

  1. Install the starship binary:

    Install Latest Version

    With Shell:

    curl -sS https://starship.rs/install.sh | sh
    

    To update the Starship itself, rerun the above script. It will replace the current version without touching Starship's configuration.

    Install via Package Manager

    With Homebrew:

    brew install starship
    

    With Winget:

    winget install starship
    
  2. Add the init script to your shell's config file:

    Bash

    Add the following to the end of ~/.bashrc:

    # ~/.bashrc
    
    eval "$(starship init bash)"
    

    Fish

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

    # ~/.config/fish/config.fish
    
    starship init fish | source
    

    Zsh

    Add the following to the end of ~/.zshrc:

    # ~/.zshrc
    
    eval "$(starship init zsh)"
    

    Powershell

    Add the following to the end of Microsoft.PowerShell_profile.ps1. You can check the location of this file by querying the $PROFILE variable in PowerShell. Typically the path is ~\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 or ~/.config/powershell/Microsoft.PowerShell_profile.ps1 on -Nix.

    Invoke-Expression (&starship init powershell)
    

    Ion

    Add the following to the end of ~/.config/ion/initrc:

    # ~/.config/ion/initrc
    
    eval $(starship init ion)
    

    Elvish

    ::: warning

    Only elvish v0.18 or higher is supported.

    :::

    Add the following to the end of ~/.elvish/rc.elv:

    # ~/.elvish/rc.elv
    
    eval (starship init elvish)
    

    Tcsh

    Add the following to the end of ~/.tcshrc:

    # ~/.tcshrc
    
    eval `starship init tcsh`
    

    Nushell

    ::: warning

    This will change in the future. Only Nushell v0.78+ is supported.

    :::

    Add the following to the end of your Nushell env file (find it by running $nu.env-path in Nushell):

    mkdir ~/.cache/starship
    starship init nu | save -f ~/.cache/starship/init.nu
    

    And add the following to the end of your Nushell configuration (find it by running $nu.config-path):

    use ~/.cache/starship/init.nu
    

    Xonsh

    Add the following to the end of ~/.xonshrc:

    # ~/.xonshrc
    
    execx($(starship init xonsh))
    

    Cmd

    You need to use Clink (v1.2.30+) with Cmd. Add the following to a file starship.lua and place this file in Clink scripts directory:

    -- starship.lua
    
    load(io.popen('starship init cmd'):read("*a"))()