Created
April 17, 2015 22:59
-
-
Save justinobney/f330bee24548ce286b0a to your computer and use it in GitHub Desktop.
Microsoft.PowerShell_profile.ps1
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
Set-Alias subl 'C:\Program Files\Sublime Text 3\sublime_text.exe' | |
Set-Location E:\Projects | |
$Shell = $Host.UI.RawUI | |
$size = $Shell.WindowSize | |
$size.width=85 | |
$size.height=150 | |
$Shell.WindowSize = $size | |
$size = $Shell.BufferSize | |
$size.width=70 | |
$size.height=5000 | |
$Shell.BufferSize = $size | |
$Shell.BackgroundColor = 'Black' | |
$Shell.ForegroundColor = 'White' | |
Clear-Host |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment