Skip to content

Instantly share code, notes, and snippets.

@uchidev
Last active July 14, 2020 14:46
Show Gist options
  • Save uchidev/d90921f40fb5469babc1655dfd4a5ed6 to your computer and use it in GitHub Desktop.
Save uchidev/d90921f40fb5469babc1655dfd4a5ed6 to your computer and use it in GitHub Desktop.
PowerShell Profile
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
$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