starship/docs
Jeremy Schlatter b1dcd5aecd
feat: add support for xonsh (#2807)
* feat: add support for xonsh

* xonsh: add STARSHIP_SESSION_KEY

* xonsh: implement STARSHIP_SESSION_KEY in xonsh

* docs: mention tcsh, elvish, and nu in more places

* xonsh: change STARSHIP_SESSION_KEY implementation

See https://github.com/starship/starship/pull/2807#discussion_r667064149

* xonsh: fix jobs implementation

* xonsh: do not silently discard stderr from starship
2021-07-16 15:25:01 -04:00
..
.vuepress feat: add support for xonsh (#2807) 2021-07-16 15:25:01 -04:00
advanced-config feat(config): Add support for `inverted` token in style strings (#2589) 2021-04-22 12:09:21 -04:00
ar-SA docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
ckb-IR docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
config feat: add support for xonsh (#2807) 2021-07-16 15:25:01 -04:00
de-DE docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
es-ES docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
faq docs: update install instructions (#2553) 2021-04-08 19:42:45 +02:00
fr-FR docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
guide docs: Add vuepress with initial docs (#99) 2019-07-19 16:18:52 -04:00
installing docs: update install instructions (#2553) 2021-04-08 19:42:45 +02:00
it-IT docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
ja-JP docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
ko-KR docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
migrating-to-0.45.0 docs: Update defaults in config docs (#1759) 2020-10-12 00:10:39 -04:00
nl-NL docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
pl-PL docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
presets docs(preset): add a new SHLVL icon to Nerd Font Symbols preset (#2809) 2021-06-20 12:40:28 -04:00
pt-BR docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
pt-PT docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
ru-RU docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
tr-TR docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
vi-VN docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
zh-CN docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
zh-TW docs(i18n): new Crowdin updates (#2879) 2021-07-13 17:58:51 -04:00
README.md feat: add support for xonsh (#2807) 2021-07-16 15:25:01 -04:00
package-lock.json ci: build and deploy site outside of Netlify 2021-05-01 18:06:12 -04:00
package.json ci: build and deploy site outside of Netlify 2021-05-01 18:06:12 -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, and PowerShell.

Prerequisites

  • A Nerd Font installed and enabled in your terminal.

Quick Install

  1. Install the starship binary:

    Install Latest Version

    With Shell:

    sh -c "$(curl -fsSL https://starship.rs/install.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 Scoop:

    scoop 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.15 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 nu version v0.33 or higher is supported. ::: Add the following to your nu config file. You can check the location of this file by running config path in nu.

    startup = [
     "mkdir ~/.cache/starship",
     "starship init nu | save ~/.cache/starship/init.nu",
     "source ~/.cache/starship/init.nu"
    ]
    prompt = "starship_prompt"
    

    Xonsh

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

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