adds: tweaks

This commit is contained in:
Ben Dixon
2019-05-19 05:51:27 +01:00
parent c0cf6ed545
commit f1a406bad8
3 changed files with 17 additions and 5 deletions

View File

@@ -36,6 +36,7 @@
- sketch - sketch
- slack - slack
- sublime-text - sublime-text
- tunnelblick
- vagrant - vagrant
- virtualbox - virtualbox
- visual-studio-code - visual-studio-code
@@ -64,6 +65,7 @@
'libyaml', 'libyaml',
'mas', 'mas',
'openssl' , 'openssl' ,
'pkg-config',
'postgresql', 'postgresql',
'rcm', 'rcm',
'readline', 'readline',
@@ -75,15 +77,14 @@
'vim', 'vim',
'watchman', 'watchman',
'yarn', 'yarn',
'zsh', 'zsh',
'zlib',
] ]
state: present state: present
update_homebrew: yes update_homebrew: yes
- name: "Link ImageMagick6 as main version (for rmagick gem)" - name: "Link ImageMagick6 as main version (for rmagick gem)"
homebrew: shell: brew link -f imagemagick@6
name: imagemagick@6
state: linked
- git: - git:
repo: https://github.com/asdf-vm/asdf.git repo: https://github.com/asdf-vm/asdf.git
@@ -165,6 +166,8 @@
source /Users/{{ lookup('env', 'USER') }}/.asdf/asdf.sh source /Users/{{ lookup('env', 'USER') }}/.asdf/asdf.sh
asdf install ruby 2.4.2 asdf install ruby 2.4.2
asdf global ruby 2.4.2 asdf global ruby 2.4.2
gem install bundler -v 1.17.3
gem install cocoapods
- name: "Install default node" - name: "Install default node"
shell: | shell: |
@@ -172,6 +175,7 @@
bash /Users/{{ lookup('env', 'USER') }}/.asdf/plugins/nodejs/bin/import-release-team-keyring bash /Users/{{ lookup('env', 'USER') }}/.asdf/plugins/nodejs/bin/import-release-team-keyring
asdf install nodejs 11.11.0 asdf install nodejs 11.11.0
asdf install nodejs 10.8.0 asdf install nodejs 10.8.0
asdf install nodejs 9.11.1
asdf global nodejs 11.11.0 asdf global nodejs 11.11.0
- name: "Install default elixir" - name: "Install default elixir"

View File

@@ -7,6 +7,13 @@ export PATH=${PATH}:${ANDROID_HOME}/tools
export PATH=${PATH}:${ANDROID_HOME}/platform-tools export PATH=${PATH}:${ANDROID_HOME}/platform-tools
export PATH=/usr/local/opt/imagemagick@6/bin:${PATH} export PATH=/usr/local/opt/imagemagick@6/bin:${PATH}
# For compilers to find zlib you may need to set:
export LDFLAGS="${LDFLAGS} -L/usr/local/opt/zlib/lib"
export CPPFLAGS="${CPPFLAGS} -I/usr/local/opt/zlib/include"
# For pkg-config to find zlib you may need to set:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH} /usr/local/opt/zlib/lib/pkgconfig"
# ZSH setup # ZSH setup
export ZSH=$HOME/.oh-my-zsh export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="robbyrussell" ZSH_THEME="robbyrussell"

View File

@@ -2,5 +2,6 @@
"ruby.intellisense": "rubyLocate", "ruby.intellisense": "rubyLocate",
"ruby.codeCompletion": "rcodetools", "ruby.codeCompletion": "rcodetools",
"ruby.format": "rubocop", "ruby.format": "rubocop",
"ruby.useLanguageServer": true "ruby.useLanguageServer": true,
"editor.tabSize": 2
} }