Last active
July 24, 2023 15:15
-
-
Save akunzai/9b9201c3fc371b083fb05c38c43ca2df to your computer and use it in GitHub Desktop.
My oh-my-posh profile
This file contains hidden or 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": [ | |
{ | |
"style": "plain", | |
"template": " NET {{ .Full }}", | |
"type": "dotnet" | |
}, | |
{ | |
"style": "plain", | |
"template": " Java {{ .Major }}", | |
"type": "java" | |
}, | |
{ | |
"style": "plain", | |
"template": " Node {{ .Major }}", | |
"type": "node" | |
}, | |
{ | |
"style": "plain", | |
"template": " PHP {{ .Major }}", | |
"type": "php" | |
} | |
], | |
"type": "prompt" | |
}, | |
{ | |
"alignment": "left", | |
"newline": true, | |
"segments": [ | |
{ | |
"foreground": "lightYellow", | |
"properties": { | |
"folder_separator_icon": "/", | |
"style": "full" | |
}, | |
"style": "plain", | |
"template": "{{ .Path }} ", | |
"type": "path" | |
}, | |
{ | |
"foreground": "lightBlue", | |
"properties": { | |
"fetch_status": true | |
}, | |
"style": "plain", | |
"type": "git" | |
}, | |
{ | |
"style": "plain", | |
"type": "executiontime" | |
}, | |
{ | |
"foreground": "red", | |
"style": "plain", | |
"type": "status" | |
}, | |
{ | |
"foreground": "lightGreen", | |
"style": "plain", | |
"template": "| {{ .CurrentDate | date .Format }}", | |
"type": "time" | |
}, | |
{ | |
"foreground": "lightMagenta", | |
"style": "plain", | |
"type": "session" | |
} | |
], | |
"type": "prompt" | |
}, | |
{ | |
"alignment": "left", | |
"newline": true, | |
"segments": [ | |
{ | |
"style": "plain", | |
"template": "{{if .Root}}<red>#</>{{else}}<lightGreen>$</>{{end}}", | |
"type": "text" | |
} | |
], | |
"type": "prompt" | |
} | |
], | |
"console_title_template": "{{if .Root}} :: root {{end}} :: {{.Shell}}", | |
"final_space": true, | |
"transient_prompt": { | |
"background": "transparent", | |
"template": "{{ .Shell }}> " | |
}, | |
"version": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment