Skip to content

Instantly share code, notes, and snippets.

@CodeMaxter
Created November 15, 2018 06:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodeMaxter/5c6972b47fedab7111d1f48a971ecea4 to your computer and use it in GitHub Desktop.
Save CodeMaxter/5c6972b47fedab7111d1f48a971ecea4 to your computer and use it in GitHub Desktop.
PowerShell script to install a software development environment using scoop package manager
# 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