Created
April 29, 2026 14:00
-
-
Save jeangatto/b6e98dde2bbcc5713ede0e27d25e66e1 to your computer and use it in GitHub Desktop.
Microsoft PowerShell 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
| $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