Created
August 21, 2022 15:21
-
-
Save ihordyrman/ebb651a7de4828ac46bc6de76c48f3ed to your computer and use it in GitHub Desktop.
my 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
Import-Module posh-git | |
Import-Module oh-my-posh | |
Import-Module Terminal-Icons | |
Import-Module PSReadLine | |
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadLineKeyHandler -Key Tab -Function Complete | |
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward | |
Set-PoshPrompt -Theme powerlevel10k_rainbow | |
Set-PSReadLineOption -Colors @{ Command = 'Blue' } | |
Set-PSReadLineOption -EditMode Windows | |
Set-PSReadLineOption -PredictionSource History | |
Set-PSReadLineOption -PredictionViewStyle ListView | |
#Enable-AzPredictor -AllSession | |
#Clear-Host |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment