Created
November 15, 2018 06:39
-
-
Save CodeMaxter/5c6972b47fedab7111d1f48a971ecea4 to your computer and use it in GitHub Desktop.
PowerShell script to install a software development environment using scoop package manager
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
# git | |
scoop install git | |
# add the optional 'extras' bucket | |
scoop bucket add extras | |
# utils | |
scoop install colortool cmder 7zip curl sudo coreutils grep cygwin totalcommander nvm paint.net | |
# colaboration | |
scoop install slack | |
# editors | |
scoop install vscode-insiders | |
# browser | |
scoop install firefox-developer chromium | |
# programming languages | |
scoop install python nvm | |
# vim | |
scoop install vim | |
' | |
set ff=unix | |
set cindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set backupdir=$TEMP | |
' | out-file ~/.vimrc -enc oem -append | |
# git | |
scoop uninstall git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment