Last active
October 16, 2018 19:10
-
-
Save parasquid/9e3ae49a00bea9912183d73119db76d3 to your computer and use it in GitHub Desktop.
Windows setup
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-MpPreference -ExclusionPath "$(Resolve-Path '~/')" | |
iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
set-executionpolicy unrestricted -s cu | |
setx GOPATH %USERPROFILE%\golib;%USERPROFILE%\go | |
mkdir %USERPROFILE%\golib | |
mkdir %USERPROFILE%\go | |
scoop bucket add extras | |
scoop bucket add java | |
scoop bucket add nirsoft | |
scoop bucket add nerd-fonts | |
scoop bucket add nonportable | |
scoop install git aria2 openssh sudo | |
scoop update | |
# languages + support | |
scoop install ruby nodejs yarn msys2 go python27 elixir | |
# editors | |
scoop install vscode flutter android-studio sublime-text arduino | |
# GUI | |
scoop install sharex steam vlc slack conemu youtube-dl-gui sourcetree | |
# terminals | |
scoop install cmder mobaxterm | |
# toolsets | |
scoop install hugo youtube-dl gow winrar-portable heroku-cli | |
# misc | |
scoop install hwinfo openvpn openssl telegram postgresql audacity lame freac whatsapp etcher | |
# fonts | |
sudo scoop install Inconsolata-NF FiraCode-NF FiraMono-NF | |
# ruby | |
scoop install vcredist2010 | |
gem install bundler | |
npm config set msvs_version 2013 | |
# virtualization | |
scoop install docker docker-compose docker-machine virtualbox-np vagrant | |
docker-machine create default | |
ridk install 1 2 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment