-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.poshtheme.omp.json
46 lines (46 loc) · 1.17 KB
/
.poshtheme.omp.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"version": 2,
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "text",
"style": "plain",
"foreground": "#ffffff",
"template": "<#C591E8>❯</><#69FF94>❯</>"
},
{
"type": "path",
"style": "plain",
"foreground": "#56B6C2",
"template": " {{ .Path }} ",
"properties": {
"style": "folder"
}
},
{
"type": "git",
"style": "plain",
"foreground": "#D0666F",
"template": " {{ .UpstreamIcon }}{{ .HEAD }} {{ if .Working.Changed }}\uf10c{{ else if .Staging.Changed }}\uf111{{ end }}",
"properties": {
"branch_icon": "",
"fetch_status": true
}
},
{
"type": "time",
"style": "plain",
"foreground": "#b5f5c7",
"template": " {{ .CurrentDate | date .Format }} ",
"properties": {
"time_format": "15:04"
}
}
]
}
]
}