Skip to content

Instantly share code, notes, and snippets.

@jeangatto
Created April 29, 2026 14:00
Show Gist options
  • Select an option

  • Save jeangatto/b6e98dde2bbcc5713ede0e27d25e66e1 to your computer and use it in GitHub Desktop.

Select an option

Save jeangatto/b6e98dde2bbcc5713ede0e27d25e66e1 to your computer and use it in GitHub Desktop.
Microsoft PowerShell Profile
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
Import-Module Terminal-Icons
Import-Module PSReadLine
Import-Module CompletionPredictor
Set-PSReadLineOption -PredictionSource HistoryAndPlugin
Set-PSReadLineOption -PredictionViewStyle Inline
Set-PSReadLineOption -ShowToolTips
Set-PSReadLineOption -HistoryNoDuplicates
Set-PSReadLineOption -BellStyle None
Set-PSReadLineOption -EditMode Emacs
Set-PSReadLineKeyHandler -Key Tab -Function Complete
oh-my-posh init pwsh --config ~\AppData\Local\Programs\oh-my-posh\themes\stelbent.minimal.omp.json | Invoke-Expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment