0

I installed cmder and I use it with Powershell and posh-git. posh-git puts the git info after the Lambda, and the cursor after the git info, without any spaces: my prompt

How do I change this to have the Lambda appear AFTER the git info? I already played witrh $PrePrompt and $PostPrompt in config\user_profile.ps1 but this only affects anything before the git info.

torek
  • 448,244
  • 59
  • 642
  • 775
rabejens
  • 7,594
  • 11
  • 56
  • 104

1 Answers1

0

Use the global $GitPromptSettings variable to set the prompt suffix in posh-git:

$GitPromptSettings.DefaultPromptSuffix = 'λ'
Mathias R. Jessen
  • 157,619
  • 12
  • 148
  • 206