Skip to content

Instantly share code, notes, and snippets.

@shanselman
Last active April 18, 2024 22:35
Show Gist options
  • Save shanselman/1f69b28bfcc4f7716e49eb5bb34d7b2c to your computer and use it in GitHub Desktop.
Save shanselman/1f69b28bfcc4f7716e49eb5bb34d7b2c to your computer and use it in GitHub Desktop.
ohmyposhv3-v2
{
"final_space": true,
"console_title": true,
"console_title_style": "folder",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"horizontal_offset": 0,
"vertical_offset": 0,
"segments": [
{
"type": "path",
"style": "diamond",
"powerline_symbol": "",
"invert_powerline": false,
"foreground": "#ffffff",
"background": "#ff479c",
"leading_diamond": "",
"trailing_diamond": "",
"properties": {
"prefix": "  ",
"style": "folder"
}
},
{
"type": "git",
"style": "powerline",
"powerline_symbol": "",
"invert_powerline": false,
"foreground": "#193549",
"background": "#fffb38",
"leading_diamond": "",
"trailing_diamond": "",
"properties": {
"display_status": true,
"display_stash_count": true,
"display_upstream_icon": true
}
},
{
"type": "dotnet",
"style": "powerline",
"powerline_symbol": "",
"invert_powerline": false,
"foreground": "#ffffff",
"background": "#6CA35E",
"leading_diamond": "",
"trailing_diamond": "",
"properties": {
"display_version": true,
"prefix": "  "
}
},
{
"type": "root",
"style": "powerline",
"powerline_symbol": "",
"invert_powerline": false,
"foreground": "#ffffff",
"background": "#ffff66",
"leading_diamond": "",
"trailing_diamond": "",
"properties": null
},
{
"type": "exit",
"style": "powerline",
"powerline_symbol": "",
"invert_powerline": false,
"foreground": "#ffffff",
"background": "#2e9599",
"leading_diamond": "",
"trailing_diamond": "",
"properties": {
"always_enabled": true,
"color_background": true,
"display_exit_code": false,
"error_color": "#f1184c",
"prefix": " "
}
}
]
}
]
}
@benjamintemitope
Copy link

Does this still work? For me it's a bit buggy, I think they migrated all the config options to other formats and when it is migrated automatically it breaks some stuff.

Yes, it is working. I just used it.

@msmolka
Copy link

msmolka commented Apr 5, 2022

for me it is also buggy:
obraz

@bplatypus
Copy link

doesn't seem to work anymore. It's doing a migration:
Oh My Posh config migrated to version 2 Backup config available at C:\Users\username\AppData\Local\Programs\oh-my-posh\themes\ohmyposhv3-v2.json.bak

@eclipsology
Copy link

eclipsology commented Jun 9, 2022

For anyone having the heart/check error, try this.

Change This:
"template": " \ue23a{{ if gt .Code 0 }}\uf00d{{ else }}\uf42e{{ end }} ",
To this in your .json file:
"template": " \ue23a ",

@hero3616
Copy link

EclipseDevelopment thank you for the tip. It worked for me.

@thienluhoan
Copy link

thienluhoan commented Jul 26, 2023

How to show github icon in front of git branch ?

@IP0
Copy link

IP0 commented Oct 14, 2023

Yo Scott, you sharing that V4 with us? ;)

@darenc
Copy link

darenc commented Oct 28, 2023

How to show github icon in front of git branch ?

Presuming you're using a "Nerd Font" style of font with all the symbols, you can just put the character in the template.

Mine looks like this:

image

"template": " \ue709 {{ .HEAD }} ... ",

U+E709 is an Octocat symbol in CaskaydiaCove NF.

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment