Last active
October 24, 2015 03:41
-
-
Save zakuni/b7a13bbbaf1a97f50ab7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| - hosts: 127.0.0.1 | |
| connection: local | |
| gather_facts: no | |
| tasks: | |
| - name: brew update | |
| homebrew: update_homebrew=yes | |
| - name: brew install packages | |
| homebrew: name={{item}} | |
| with_items: | |
| - python | |
| - ruby | |
| - tmux | |
| - z | |
| - name: sudo easy_install pip | |
| sudo: yes | |
| easy_install: name=pip | |
| - name: install powerline-status | |
| pip: name=powerline-status state=latest | |
| pip: name=psutil | |
| - name: install emacs | |
| homebrew: name=emacs install_options=cocoa | |
| - name: brew linkapps | |
| command: brew linkapps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment