Skip to content

Instantly share code, notes, and snippets.

@pauloreis7
Created February 27, 2022 17:59
Show Gist options
  • Save pauloreis7/376d61c27ac80ef223f4d8b0a8dc3a4b to your computer and use it in GitHub Desktop.
Save pauloreis7/376d61c27ac80ef223f4d8b0a8dc3a4b to your computer and use it in GitHub Desktop.
Terminal $profile configs
# PowerShell settings
# Import the oh-my-posh themes and use Spaceship
Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt Spaceship
# Autocomplete, keybinds and command history
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward
Set-PSReadlineOption -HistorySearchCursorMovesToEnd
# PSReadline Autosuggestions
Set-PSReadlineOption -ShowToolTips
Set-PSReadlineOption -PredictionSource History
clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment