1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-24 21:57:41 +00:00
starship/docs
whi-tw 4d3a4f230d
fix(nodejs): Change symbol to nerd-font (#1649)
The unicode hexagon symbol does not actually fit into a single column with a
fixed-width font.  does. As starship requires a nerd font as a prerequisite, 
it's safe to assume that this symbol is available.
Symbol link: https://www.nerdfonts.com/cheat-sheet?set=nf-mdi-nodejs

In the documentation, I've left the '⬢' symbols in '#### Text Group' as
they are, as they will continue displaying correctly in a browser
without a nerd font available. I feel like readability is more important
than consistency with the new nodejs symbol, especially as this
documentation section does not actually refer to nodejs, rather it's
just a symbol.

As `⬢` has been replaced, use `⌘` instead in documentation to avoid
any possible confusion
2021-02-22 14:10:36 -06:00
..
.vuepress build(deps-dev): bump vuepress-theme-default-prefers-color-scheme from 1.1.2 to 2.0.0 in /docs (#1946) 2021-02-16 17:09:59 -05:00
advanced-config fix: bg:none overwrites foreground colour (#1903) 2020-12-02 00:40:15 -06:00
ar-SA docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
ckb-IR docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
config fix(nodejs): Change symbol to nerd-font (#1649) 2021-02-22 14:10:36 -06:00
de-DE docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
es-ES docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
faq docs: add 'autocomplete' keyword to FAQ 2020-12-14 12:54:30 -05:00
fr-FR docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
guide docs: Add vuepress with initial docs (#99) 2019-07-19 16:18:52 -04:00
installing docs: Update README.md with instructions for termux (#2257) 2021-02-21 10:36:03 +01:00
it-IT docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
ja-JP docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
ko-KR docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01: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 (#2275) 2021-02-21 20:13:18 +01:00
pl-PL docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
presets feat(battery): make module behaviour more obvious (#1950) 2021-01-01 12:16:55 +01:00
pt-BR docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
pt-PT docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
ru-RU docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
tr-TR docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
vi-VN docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
zh-CN docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
zh-TW docs(i18n): New Crowdin updates (#2275) 2021-02-21 20:13:18 +01:00
package-lock.json build(deps-dev): bump vuepress from 1.8.1 to 1.8.2 in /docs (#2368) 2021-02-22 14:49:21 -05:00
package.json build(deps-dev): bump vuepress from 1.8.1 to 1.8.2 in /docs (#2368) 2021-02-22 14:49:21 -05:00
README.md feat: add support for elvish shell (#1725) 2021-02-02 12:59:55 +01:00

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, and PowerShell.

Quick Install

  1. Install the starship binary:

    Install Latest Version

    With Shell:

    curl -fsSL https://starship.rs/install.sh | bash
    

    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)