Created
February 27, 2022 17:59
-
-
Save pauloreis7/376d61c27ac80ef223f4d8b0a8dc3a4b to your computer and use it in GitHub Desktop.
Terminal $profile configs
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
# 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