Skip to content

Instantly share code, notes, and snippets.

@justinobney
Created April 17, 2015 22:59
Show Gist options
  • Save justinobney/f330bee24548ce286b0a to your computer and use it in GitHub Desktop.
Save justinobney/f330bee24548ce286b0a to your computer and use it in GitHub Desktop.
Microsoft.PowerShell_profile.ps1
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