oh-my-posh/.devcontainer/Microsoft.PowerShell_profile.ps1

12 lines
375 B
PowerShell
Raw Normal View History

2021-11-26 03:41:33 -08:00
Import-Module posh-git
Import-Module PSFzf -ArgumentList 'Ctrl+t', 'Ctrl+r'
Import-Module z
Import-Module Terminal-Icons
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
$env:POSH_GIT_ENABLED=$true
2022-03-25 11:03:37 -07:00
oh-my-posh init pwsh --config $env:POSH_THEME | Invoke-Expression
2021-11-26 03:02:28 -08:00
# NOTE: You can override the above env var from the devcontainer.json "args" under the "build" key.