Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
Added a bit about updating the default error/warning colors if using
this them with PowerShell.
  • Loading branch information
Neil Pankey committed Sep 13, 2012
1 parent df4a8d1 commit 2c75fe8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,16 @@ Installation
Import the `.reg` file of choice, e.g. `regedit /s solarized-dark.reg`.

Both files contain the same palettes, the only difference is the default
foreground and background colors. Therefore you can switch between themes
on the fly with `color 81` for dark and `color F6` for light.
foreground and background colors. Therefore you can switch between themes on
the fly with `color 81` for dark and `color F6` for light.

If you're using these themes with PowerShell (especially the light), I
recommend updating the default error and warning colors in your profile at
`~\Documents\WindowsPowerShell\profile.ps1`. Setting the background colors for
each to "White"/"Black" for light/dark respectively should do the trick, e.g.

$Host.PrivateData.DebugBackgroundColor = "Black"
$Host.PrivateData.ErrorBackgroundColor = "Black"

Screenshots
------------
Expand Down

0 comments on commit 2c75fe8

Please sign in to comment.