Skip to content

Instantly share code, notes, and snippets.

@ashutoshsahoo
Created August 3, 2022 17:11
Show Gist options
  • Save ashutoshsahoo/5e94b6f507839e03292567ae507ef4a3 to your computer and use it in GitHub Desktop.
Save ashutoshsahoo/5e94b6f507839e03292567ae507ef4a3 to your computer and use it in GitHub Desktop.
Windows Terminal command autocomplete
Import-Module posh-git
Import-Module oh-my-posh
Import-Module PSReadLine
Set-PoshPrompt -Theme gmay_ashu
New-Alias kc kubectl
# Shows navigable menu of all options when hitting Tab
Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
# Autocompleteion for Arrow keys
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward
Set-PSReadLineOption -ShowToolTips
Set-PSReadLineOption -PredictionSource History
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment