mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
3057e474d7
this look a lot better
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
---
|
|
id: project
|
|
title: Project
|
|
sidebar_label: Project
|
|
---
|
|
|
|
## What
|
|
|
|
Display the current version of your project defined in the package file.
|
|
|
|
Supports:
|
|
|
|
- Node.js project (`package.json`)
|
|
- Cargo project (`Cargo.toml`)
|
|
- Poetry project (`pyproject.toml`)
|
|
- PHP project (`composer.json`)
|
|
- Any nuspec based project (`*.nuspec`, first file match info is displayed)
|
|
|
|
## Sample Configuration
|
|
|
|
```json
|
|
{
|
|
"type": "project",
|
|
"style": "powerline",
|
|
"powerline_symbol": "\uE0B0",
|
|
"foreground": "#193549",
|
|
"background": "#ffeb3b",
|
|
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ if .Version }}\uf487 {{.Version}}{{ end }} {{ if .Name }}{{ .Name }}{{ end }}{{ end }} "
|
|
}
|
|
```
|
|
|
|
## Template ([info][templates])
|
|
|
|
:::note default template
|
|
|
|
```template
|
|
{{ if .Error }}{{ .Error }}{{ else }}{{ if .Version }}\uf487 {{.Version}}{{ end }} {{ if .Name }}{{ .Name }}{{ end }}{{ end }}
|
|
```
|
|
|
|
:::
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Description |
|
|
| ---------- | -------- | --------------------------- |
|
|
| `.Version` | `string` | The version of your project |
|
|
| `.Name` | `string` | The name of your project |
|
|
|
|
[templates]: /docs/configuration/templates
|