Last active
October 11, 2024 06:48
-
-
Save NorbertFenk/5cace869a369dffc02a876ddd4227e7f to your computer and use it in GitHub Desktop.
PowerShell Customization Guide
This file contains 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 customization | |
Starship on PowerShell_ | |
https://dev.to/ganmahmud/take-your-windows-powershell-to-the-next-level-by-starship-2gb2 | |
Scoop pkg manager: | |
https://scoop.sh/ | |
Git aliases: | |
https://github.com/gluons/powershell-git-aliases | |
Improve history serach: | |
https://www.reddit.com/r/PowerShell/comments/ytkqch/ps_suddenly_has_autocomplete_how_to_use_it/ | |
https://learn.microsoft.com/en-us/powershell/module/psreadline/set-psreadlinekeyhandler?view=powershell-7.4 | |
I like this setting: | |
Set-PSReadLineKeyHandler -Chord UpArrow -Function HistorySearchBackward | |
Set-PSReadLineKeyHandler -Chord DownArrow -Function HistorySearchForward |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Worth to put these
Set-PSReadLineKeyHandler -Chord UpArrow -Function HistorySearchBackward
Set-PSReadLineKeyHandler -Chord DownArrow -Function HistorySearchForward
to here:
notepad.exe $PROFILE