Last active
July 20, 2020 00:27
-
-
Save chadluo/5bd66bf32dedc31995e4e96d5c4c10cd to your computer and use it in GitHub Desktop.
.powershellrc
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
| # installer; see https://www.thomasmaurer.ch/2019/03/how-to-install-and-update-powershell-6/ | |
| # iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" | |
| # edit this script | |
| # $EDITOR $profile | |
| # Administrator, enable this script | |
| # Set-ExecutionPolicy RemoteSigned | |
| # incremental tab completion | |
| Set-PSReadlineKeyHandler -Key Tab -Function Complete | |
| # disable bell | |
| Set-PSReadlineOption -BellStyle None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment