├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yaml │ └── homebrew.yml ├── .gitignore ├── .gitmodules ├── .releaserc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── crowdin.yml ├── docs ├── api.md ├── api.uk.md ├── api.zh.md ├── assets │ ├── configurable.svg │ ├── favicon.ico │ ├── out-of-the-box.svg │ ├── styles.css │ └── what-is-needed.svg ├── getting-started.md ├── getting-started.uk.md ├── getting-started.zh.md ├── index.md ├── index.uk.md ├── index.zh.md ├── options.md ├── options.uk.md ├── options.zh.md ├── overrides │ ├── index.html │ └── main.html ├── troubleshooting.md ├── troubleshooting.uk.md └── troubleshooting.zh.md ├── lib ├── hooks.zsh ├── section.zsh └── utils.zsh ├── mkdocs.yml ├── netlify.toml ├── package.json ├── requirements.txt ├── scripts ├── install.sh ├── tests.sh └── uninstall.sh ├── sections ├── aws.zsh ├── battery.zsh ├── char.zsh ├── conda.zsh ├── dir.zsh ├── docker.zsh ├── docker_context.zsh ├── dotnet.zsh ├── elixir.zsh ├── elm.zsh ├── ember.zsh ├── exec_time.zsh ├── exit_code.zsh ├── gcloud.zsh ├── git.zsh ├── git_branch.zsh ├── git_status.zsh ├── golang.zsh ├── gradle.zsh ├── haskell.zsh ├── hg.zsh ├── hg_branch.zsh ├── hg_status.zsh ├── host.zsh ├── jobs.zsh ├── julia.zsh ├── kubectl.zsh ├── kubectl_context.zsh ├── kubectl_version.zsh ├── line_sep.zsh ├── maven.zsh ├── node.zsh ├── package.zsh ├── php.zsh ├── pyenv.zsh ├── ruby.zsh ├── rust.zsh ├── swift.zsh ├── terraform.zsh ├── time.zsh ├── user.zsh ├── venv.zsh ├── vi_mode.zsh └── xcode.zsh ├── spaceship.zsh ├── spaceship.zsh-theme └── tests ├── char.test.zsh ├── dir.test.zsh ├── elm.test.zsh ├── hooks.test.zsh ├── host.test.zsh ├── section.test.zsh ├── stubs └── elm ├── uninstall.test.zsh ├── user.test.zsh └── utils.test.zsh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.github/workflows/homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.gitmodules -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/api.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/api.uk.md -------------------------------------------------------------------------------- /docs/api.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/api.zh.md -------------------------------------------------------------------------------- /docs/assets/configurable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/assets/configurable.svg -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/out-of-the-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/assets/out-of-the-box.svg -------------------------------------------------------------------------------- /docs/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/assets/styles.css -------------------------------------------------------------------------------- /docs/assets/what-is-needed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/assets/what-is-needed.svg -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/getting-started.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/getting-started.uk.md -------------------------------------------------------------------------------- /docs/getting-started.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/getting-started.zh.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/index.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/index.uk.md -------------------------------------------------------------------------------- /docs/index.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/index.zh.md -------------------------------------------------------------------------------- /docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/options.md -------------------------------------------------------------------------------- /docs/options.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/options.uk.md -------------------------------------------------------------------------------- /docs/options.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/options.zh.md -------------------------------------------------------------------------------- /docs/overrides/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/overrides/index.html -------------------------------------------------------------------------------- /docs/overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/overrides/main.html -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/troubleshooting.uk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/troubleshooting.uk.md -------------------------------------------------------------------------------- /docs/troubleshooting.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/docs/troubleshooting.zh.md -------------------------------------------------------------------------------- /lib/hooks.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/lib/hooks.zsh -------------------------------------------------------------------------------- /lib/section.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/lib/section.zsh -------------------------------------------------------------------------------- /lib/utils.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/lib/utils.zsh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/scripts/tests.sh -------------------------------------------------------------------------------- /scripts/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/scripts/uninstall.sh -------------------------------------------------------------------------------- /sections/aws.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/aws.zsh -------------------------------------------------------------------------------- /sections/battery.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/battery.zsh -------------------------------------------------------------------------------- /sections/char.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/char.zsh -------------------------------------------------------------------------------- /sections/conda.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/conda.zsh -------------------------------------------------------------------------------- /sections/dir.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/dir.zsh -------------------------------------------------------------------------------- /sections/docker.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/docker.zsh -------------------------------------------------------------------------------- /sections/docker_context.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/docker_context.zsh -------------------------------------------------------------------------------- /sections/dotnet.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/dotnet.zsh -------------------------------------------------------------------------------- /sections/elixir.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/elixir.zsh -------------------------------------------------------------------------------- /sections/elm.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/elm.zsh -------------------------------------------------------------------------------- /sections/ember.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/ember.zsh -------------------------------------------------------------------------------- /sections/exec_time.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/exec_time.zsh -------------------------------------------------------------------------------- /sections/exit_code.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/exit_code.zsh -------------------------------------------------------------------------------- /sections/gcloud.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/gcloud.zsh -------------------------------------------------------------------------------- /sections/git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/git.zsh -------------------------------------------------------------------------------- /sections/git_branch.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/git_branch.zsh -------------------------------------------------------------------------------- /sections/git_status.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/git_status.zsh -------------------------------------------------------------------------------- /sections/golang.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/golang.zsh -------------------------------------------------------------------------------- /sections/gradle.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/gradle.zsh -------------------------------------------------------------------------------- /sections/haskell.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/haskell.zsh -------------------------------------------------------------------------------- /sections/hg.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/hg.zsh -------------------------------------------------------------------------------- /sections/hg_branch.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/hg_branch.zsh -------------------------------------------------------------------------------- /sections/hg_status.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/hg_status.zsh -------------------------------------------------------------------------------- /sections/host.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/host.zsh -------------------------------------------------------------------------------- /sections/jobs.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/jobs.zsh -------------------------------------------------------------------------------- /sections/julia.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/julia.zsh -------------------------------------------------------------------------------- /sections/kubectl.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/kubectl.zsh -------------------------------------------------------------------------------- /sections/kubectl_context.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/kubectl_context.zsh -------------------------------------------------------------------------------- /sections/kubectl_version.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/kubectl_version.zsh -------------------------------------------------------------------------------- /sections/line_sep.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/line_sep.zsh -------------------------------------------------------------------------------- /sections/maven.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/maven.zsh -------------------------------------------------------------------------------- /sections/node.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/node.zsh -------------------------------------------------------------------------------- /sections/package.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/package.zsh -------------------------------------------------------------------------------- /sections/php.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/php.zsh -------------------------------------------------------------------------------- /sections/pyenv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/pyenv.zsh -------------------------------------------------------------------------------- /sections/ruby.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/ruby.zsh -------------------------------------------------------------------------------- /sections/rust.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/rust.zsh -------------------------------------------------------------------------------- /sections/swift.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/swift.zsh -------------------------------------------------------------------------------- /sections/terraform.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/terraform.zsh -------------------------------------------------------------------------------- /sections/time.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/time.zsh -------------------------------------------------------------------------------- /sections/user.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/user.zsh -------------------------------------------------------------------------------- /sections/venv.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/venv.zsh -------------------------------------------------------------------------------- /sections/vi_mode.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/vi_mode.zsh -------------------------------------------------------------------------------- /sections/xcode.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/sections/xcode.zsh -------------------------------------------------------------------------------- /spaceship.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/spaceship.zsh -------------------------------------------------------------------------------- /spaceship.zsh-theme: -------------------------------------------------------------------------------- 1 | spaceship.zsh -------------------------------------------------------------------------------- /tests/char.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/char.test.zsh -------------------------------------------------------------------------------- /tests/dir.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/dir.test.zsh -------------------------------------------------------------------------------- /tests/elm.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/elm.test.zsh -------------------------------------------------------------------------------- /tests/hooks.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/hooks.test.zsh -------------------------------------------------------------------------------- /tests/host.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/host.test.zsh -------------------------------------------------------------------------------- /tests/section.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/section.test.zsh -------------------------------------------------------------------------------- /tests/stubs/elm: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env zsh 2 | 3 | echo 0.20.0 4 | -------------------------------------------------------------------------------- /tests/uninstall.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/uninstall.test.zsh -------------------------------------------------------------------------------- /tests/user.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/user.test.zsh -------------------------------------------------------------------------------- /tests/utils.test.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/spaceship-prompt/HEAD/tests/utils.test.zsh --------------------------------------------------------------------------------