Created
July 20, 2022 11:54
-
-
Save blowdart/47da676559b21673541860cdabe50c9c to your computer and use it in GitHub Desktop.
agnoster_minimal.json theme for OhMyPosh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"foreground": "#ffffff", | |
"style": "plain", | |
"template": "{{ .Meaning }}\u274c ", | |
"type": "exit" | |
}, | |
{ | |
"foreground": "#ff0000", | |
"style": "plain", | |
"template": "# ", | |
"type": "root" | |
}, | |
{ | |
"foreground": "#ffffff", | |
"style": "plain", | |
"template": "{{ .UserName }}@{{ .HostName }} ", | |
"type": "session" | |
}, | |
{ | |
"background": "#007ACC", | |
"foreground": "#ffffff", | |
"properties": { | |
"folder_icon": "\u2026", | |
"folder_separator_icon": " \ue0b1 ", | |
"style": "agnoster_short", | |
"max_depth": 3 | |
}, | |
"style": "plain", | |
"template": "<transparent>\ue0b0</> {{ .Path }} ", | |
"type": "path" | |
}, | |
{ | |
"background": "#007ACC", | |
"foreground": "#ffffff", | |
"properties": { | |
"branch_ahead_icon": "\u2191", | |
"branch_behind_icon": "\u2193", | |
"branch_gone": "\u2262", | |
"branch_icon": "\ue0a0 ", | |
"branch_identical_icon": "\u2261", | |
"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": "#007ACC", | |
"style": "plain", | |
"template": "\ue0b0 ", | |
"type": "text" | |
} | |
], | |
"type": "prompt" | |
} | |
], | |
"version": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment