Last active
March 8, 2017 00:09
-
-
Save natemccurdy/d0661bd6d316f966e85f7c6530b305ff to your computer and use it in GitHub Desktop.
Bootstrap to make editing code on Windows better
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
# GETTING STARTED | |
# 1. Install the Puppet agent from http://downloads.puppetlabs.com/windows/puppet-agent-1.3.6-x64.msi | |
# 2. puppet module install chocolatey-chocolatey | |
# 3. puppet module install cyberious-apm | |
# 4. puppet apply windows_dev_node.pp | |
include chocolatey | |
$choco_packages = [ | |
'git', | |
'atom', | |
'psget', | |
'poshgit', | |
'conemu', | |
'ruby', | |
] | |
package { $choco_packages: | |
ensure => present, | |
provider => 'chocolatey', | |
} | |
$gem_packages = [ | |
'puppet-lint', | |
'hiera-eyaml', | |
'r10k', | |
] | |
# Due to the bug at the link below, the install_options need to be set | |
# so that Puppet doesn't try to install the gem into its own Ruby stack. | |
# This also makes this resource *not* idempotent, but as this is mostly just a | |
# one-time provisioning script, that's not a deal-breaker. | |
# https://tickets.puppetlabs.com/browse/PUP-6134 | |
package { $gem_packages: | |
ensure => present, | |
provider => 'gem', | |
install_options => { | |
'--install-dir' => 'C:\tools\ruby22\lib\ruby\gems\2.2.0', | |
'--bindir' => 'c:\tools\ruby22\bin'}, | |
require => Package['ruby'], | |
} | |
$apm_packages = [ | |
'language-puppet', | |
'linter', | |
'linter-puppet-lint', | |
'linter-erb', | |
'linter-puppet-parser', | |
'hiera-eyaml', | |
'aligner', | |
'aligner-puppet', | |
'aligner-ruby', | |
'git-plus', | |
'minimap', | |
] | |
package { $apm_packages: | |
ensure => present, | |
provider => 'apm', | |
require => Package['atom'], | |
} | |
exec { 'git alias: unstage': | |
command => 'git config --global alias.unstage "reset HEAD --"', | |
path => $::path, | |
} | |
exec { 'git alias: co': | |
command => 'git config --global alias.co "checkout"', | |
path => $::path, | |
} | |
exec { 'git alias: hist': | |
command => "git config --global alias.hist \"log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short\"", | |
path => $::path, | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment