Last active
December 28, 2015 19:28
-
-
Save kthompson/7549969 to your computer and use it in GitHub Desktop.
Basic windows install.
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
:: install Chocolatey | |
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin | |
:: basics | |
choco install 7zip GoogleChrome vlc adobereader SublimeText3 putty | |
:: dev | |
choco install VisualStudio2013Premium -InstallArguments "/Features:'WebTools Win8SDK' | |
choco install VS2013.3 | |
choco install resharper linqpad4 wixtoolset | |
choco install git python nodejs vagrant ilspy tortoisesvn P4Merge | |
:: extras | |
choco install Console2 dropbox virtualbox keepass wireshark lockhunter Everything | |
git config --global merge.tool p4merge | |
git config --global mergetool.p4merge.path 'C:\Program Files\Perforce\p4merge.exe' | |
git config --global mergetool.prompt false | |
git config --global alias.co checkout | |
git config --global alias.cp cherry-pick |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment