forked from chrisminton/mac-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.config.yml
160 lines (148 loc) · 3.38 KB
/
default.config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
---
downloads: ~/.ansible-downloads/
mount_path: /Volumes
# set to yes to run certain tasks
configure_aws: yes
configure_dotfiles: no
configure_sudoers: no
configure_terminal: yes
configure_osx: no
configure_vim: yes
configure_vscode: yes
dotfiles_repo: "[email protected]:chrisminton/dotfiles.git"
dotfiles_repo_accept_hostkey: yes
dotfiles_repo_local_destination: ~/Development/GitHub/dotfiles
dotfiles_files:
- .gitignore
- .config/powerline
- .osx
- .tmux.conf
- .vimrc
- .zshrc
homebrew_installed_packages:
- autoconf
- awscli
- bash
- bash-completion
- bosh-cli # cloud foundry cli tools
- cf-cli # cloud foundry cli tools
- coreutils
- cowsay
- direnv
- git
- git-crypt
- git-duet
- gnu-tar
- go
- gpg
- hub
- httpie
- iperf
- jq
- kubernetes-cli
- kubernetes-helm
- libevent
- mcrypt
- nmap
- node
- nvm
- om
- openssl
- packer
- pinentry-mac # for GPG signing git commits
- python3
- readline
- reattach-to-user-namespace
- remind101/formulae/assume-role
- shellcheck
- sqlite
- ssh-copy-id
- terraform
- terraform_landscape
- tmux
- wget
- wireshark
- vault
- vim
- yq
homebrew_taps:
- homebrew/core
- caskroom/cask
- cloudfoundry/tap
- git-duet/tap
- starkandwayne/cf
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
- docker
- firefox
- google-chrome
- gpg-suite
- gpgtools
- handbrake
- iterm2
- keybase
- macpass # KeyPass Mac port
- microsoft-teams
- slack
- spectacle
- vagrant
- { name: virtualbox, install_options: no-quarantine }
- visual-studio-code
- whatsapp
# See `geerlingguy.mas` role documentation for usage instructions.
mas_installed_apps: []
mas_email: ""
mas_password: ""
osx_script: "~/.osx --no-restart"
# Install packages from other package managers.
# Note: You are responsible for making sure the required package managers are
# installed, eg. through homebrew.
composer_packages: []
# - name: drush
# state: present # present/absent, default: present
# version: "^8.1" # default: N/A
gem_packages: []
# - name: bundler
# state: present # present/absent/latest, default: present
# version: "~> 1.15.1" # default: N/A
npm_packages: []
# - name: webpack
# state: present # present/absent/latest, default: present
# version: "^2.6" # default: N/A
pip_packages:
# - name: mkdocs
# state: present # present/absent/latest, default: present
# version: "0.16.3" # default: N/A
- name: aws-shell
executable: /usr/local/bin/pip3
- name: boto3
executable: /usr/local/bin/pip3
- name: netifaces # for powerline status internal IP
executable: /usr/local/bin/pip3
- name: powerline-status
executable: /usr/local/bin/pip3
- name: pylint
executable: /usr/local/bin/pip3
- name: virtualenv
executable: /usr/local/bin/pip3
# Chef
chefdk_version: 2.5.3
# vim setup
vim_plugin_dir: ~/.vim/autoload
# vscode setup
vscode_util: /usr/local/bin/code
vscode_extensions:
- bibhasdn.unique-lines
- davidanson.vscode-markdownlint
- eriklynd.json-tools
- jmmeessen.jenkins-declarative-support
- mauve.terraform
- ms-kubernetes-tools.vscode-kubernetes-tools
- ms-python.python
- pendrica.chef
- PeterJausovec.vscode-docker
- rebornix.ruby
- redhat.vscode-yaml
- timonwong.shellcheck
# Glob pattern to ansible task files to run after all other tasks are finished.
post_provision_tasks: []