1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-08 19:32:21 +00:00
The minimal, blazing-fast, and infinitely customizable prompt for any shell!
Go to file
Matan Kushner 8239fbd12b
Refactor integration tests (#71)
- Create subcommands to be able to print modules independently
	- `starship prompt` will print the full prompt
	- `starship module <MODULE_NAME>` will print a specific module
		e.g. `starship module python`
	- Added `--path` flag to print the prompt or modules without being in a specific directory
	- Added `--status` flag to provide the status of the last command, instead of requiring it as an argument
- Refactored integration tests to be end-to-end tests, since there was no way in integration tests to set the environment variables for a specific command, which was required for the `username` module
- Moved e2e tests to `tests/testsuite` to allow for a single binary to be built
	- Tests will build/run faster
	- No more false positives for unused functions
- Added tests for `username`
- Removed codecov + tarpaulin 😢
2019-06-06 13:18:00 +01:00
.github Clean up feature request template comment 2019-04-30 14:30:40 -04:00
adapters Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
benches Parallelize prompt modules (#46) 2019-05-09 23:51:50 -04:00
ci Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
media docs: Add starship logo to README.md (#65) 2019-05-25 11:11:12 -04:00
src Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
tests Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
.all-contributorsrc docs: add youssefhabri as a contributor (#61) 2019-05-20 14:08:03 -04:00
.dockerignore Add docker for integration tests (#37) 2019-04-28 13:34:46 -04:00
.gitignore Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
azure-pipelines.yml Use starship-test docker image for running integration tests (#70) 2019-05-29 13:27:18 +02:00
Cargo.lock chore(deps): Bump battery from 0.7.3 to 0.7.4 (#74) 2019-06-05 14:55:04 +01:00
Cargo.toml chore(deps): Bump battery from 0.7.3 to 0.7.4 (#74) 2019-06-05 14:55:04 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#42) 2019-04-30 23:30:42 -04:00
integration_test Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00
LICENSE Add LICENSE 2019-04-13 00:47:49 -04:00
README.md Refactor integration tests (#71) 2019-06-06 13:18:00 +01:00

Starship

The cross-shell prompt for astronauts.

Azure Pipelines Build Status All Contributors Chat on Discord


⚠️ This is very much work in progress, so please don't try to use it just yet!

Starship is a Rust port of the minimalistic, powerful, and extremely customizable prompt Spaceship ZSH.

Development plans

The project is beginning as a port of Spaceship ZSH, but will be improved in areas where Spaceship ZSH was previously limited:

  • Speed
  • Concurrency of segment logic execution
    • Memoization of expensive operations
  • Safety and error handling
  • Testability of code
  • Configuration
    • Cross-shell support with JSON or TOML config files

We will not be aiming to achieve full parity with Spaceship ZSH as a result, so I am very open to discussing and reevaluating new solutions and ideas for the prompt.

I'm very new to Rust, so any help is appreciated when it comes to improving development patterns, writing idiomatic Rust, performance, safety, etc. 😄

Prompt segments

  • Prompt character turns red if the last command exits with non-zero code.
  • Current Node.js version().
  • Current Rust version (🦀).
  • Current Python version (🐍).
  • Current Go version (🐹).
  • Package version of package in current directory (📦).
  • Current battery level and status
  • Current Git branch and rich repo status:
    • = — conflicting changes
    • — ahead of remote branch
    • — behind of remote branch
    • — diverged changes
    • ? — untracked changes
    • $ — stashed changes
    • ! — modified files
    • + — added files
    • » — renamed files
    • — deleted files
  • Indicator for jobs in the background ().
  • Execution time of the last command if it exceeds the set threshold.

Other features

  • .starshiprc configuration (JSON or TOML)
  • Custom sections given commands or binaries
  • Self-updating

Shell support

  • Fish shell
  • Z Shell
  • Bash

Test strategy

  • Per-segment benchmarking
  • Per-segment unit + integration tests
  • Shell + OS matrix acceptance tests

Setup

Prerequisites

  • Rust v1.33 or higher

Getting Started

  1. cd to the root of the starship repo

  2. Install the starship binary:

    cargo install --path .
    
  3. Navigate to the adapters directory

    cd adapters
    

Fish

  1. Install the fish shell prompt with fisher:

    fisher $PWD
    

oh-my-zsh

  1. Install the zsh theme:

    cp starship.zsh-theme ~/.oh-my-zsh/themes
    
  2. In ~/.zshrc, find the line with ZSH_THEME= and set it to

    ZSH_THEME="starship"
    

Contributing

To test locally run the below command:

cargo run -- $status

Contributors

Thanks goes to these wonderful people (emoji key):

Matan Kushner
Matan Kushner

💻 🎨 🤔 🚇 🚧 👀 ⚠️
John Letey
John Letey

💻 🤔 👀 ⚠️
Tim Mulqueen
Tim Mulqueen

💻 🤔 👀 ⚠️
Tiffany Le-Nguyen
Tiffany Le-Nguyen

🤔 🚧 👀
​Snuggle
Snuggle

🎨 🤔 🚧 👀
Ryan Leckey
Ryan Leckey

👀
Youssef Habri
Youssef Habri

💻

This project follows the all-contributors specification. Contributions of any kind welcome!