Last active
July 14, 2020 14:46
-
-
Save uchidev/d90921f40fb5469babc1655dfd4a5ed6 to your computer and use it in GitHub Desktop.
PowerShell Profile
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
0 0 0 <- 画面の文字 | |
0 0 128 | |
0 128 0 | |
0 128 128 | |
128 0 0 | |
1 36 86 | |
200 200 200 | |
232 232 232 <- 画面の背景 | |
128 128 128 | |
0 0 200 | |
0 140 0 | |
0 255 255 | |
200 0 0 | |
255 0 255 | |
0 0 200 | |
255 255 255 |
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
$Host.UI.RawUI.ForegroundColor = 'Black' | |
$Host.UI.RawUI.BackgroundColor = 'Gray' | |
$Host.PrivateData.ErrorForegroundColor = 'Red' | |
$Host.PrivateData.ErrorBackgroundColor = 'Gray' | |
$Host.PrivateData.WarningForegroundColor = 'Red' | |
$Host.PrivateData.WarningBackgroundColor = 'Gray' | |
$Host.PrivateData.DebugForegroundColor = 'Red' | |
$Host.PrivateData.DebugBackgroundColor = 'Gray' | |
$Host.PrivateData.VerboseForegroundColor = 'Red' | |
$Host.PrivateData.VerboseBackgroundColor = 'Gray' | |
$Host.PrivateData.ProgressForegroundColor = 'Red' | |
$Host.PrivateData.ProgressBackgroundColor = 'Gray' | |
Set-PSReadlineOption -BellStyle None | |
Set-PSReadlineOption -EditMode Emacs | |
Set-Location C:\Users\uchi\home |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment