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

View File

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