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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| { "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", "blocks": [ { "alignment": "left", "segments": [ { "foreground": "#ffffff", "style": "plain", "template": "{{ reason .Code }}\u274c ", "type": "status" }, { "foreground": "#ff0000", "style": "plain", "template": "", "type": "root" }, { "background": "#3b4252", "foreground": "#81a1c1", "style": "plain", "template": " {{ .UserName }}@", "type": "session" }, { "background": "#88c0d0", "foreground": "#5e81ac", "properties": { "folder_icon": "\u2026", "folder_separator_icon": " \ue0b1 ", "style": "agnoster_short", "max_depth": 3 }, "style": "plain", "template": "<#3b4252>\ue0b0</> {{ .Path }} ", "type": "path" }, { "background": "#88c0d0", "foreground": "#5e81ac", "properties": { "cherry_pick_icon": "\u2713 ", "commit_icon": "\u25b7 ", "fetch_status": true, "merge_icon": "\u25f4 ", "no_commits_icon": "[no commits]", "rebase_icon": "\u2c62 ", "tag_icon": "\u25b6 " }, "style": "plain", "template": "{{ .HEAD }}{{ if and (eq .Ahead 0) (eq .Behind 0) }} \u2261{{end}}{{ if gt .Ahead 0 }} \u2191{{.Ahead}}{{end}}{{ if gt .Behind 0 }} \u2193{{.Behind}}{{end}} {{ if .Working.Changed }}+{{ .Working.Added }} ~{{ .Working.Modified }} -{{ .Working.Deleted }} {{ end }}", "type": "git" }, { "foreground": "#88c0d0", "style": "plain", "template": "\ue0b0 ", "type": "text" } ], "type": "prompt" } ], "version": 3 }
|