forked from osxc/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.yml
29 lines (28 loc) · 1.12 KB
/
configuration.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
---
# Configure your freshly installed software
- hosts: all
roles:
- role: osxc.repository
clone_url: https://github.com/robbyrussell/oh-my-zsh.git
dest: /Users/{{ ansible_user_id }}/.oh-my-zsh
- role: osxc.repository
clone_url: https://github.com/square/maximum-awesome.git
dest: /Users/{{ ansible_user_id }}/.vim
links:
- src: vimrc
dest: /Users/{{ ansible_user_id }}/.vimrc
- src: vimrc.bundles
dest: /Users/{{ ansible_user_id }}/.vimrc.bundles
- src: tmux.conf
dest: /Users/{{ ansible_user_id }}/.tmux.conf
- role: osxc.repository
clone_url: https://github.com/gmarik/vundle.git
dest: /Users/{{ ansible_user_id }}/.vim/bundle/vundle
post_tasks:
- copy: src=dotfiles/zshrc dest=/Users/{{ ansible_user_id }}/.zshrc backup=yes
- copy: src=dotfiles/vimrc.local dest=/Users/{{ ansible_user_id }}/.vimrc.local backup=yes
- copy: src=dotfiles/vimrc.bundles.local dest=/Users/{{ ansible_user_id }}/.vimrc.bundles.local backup=yes
- copy: src=dotfiles/tmux.conf.local dest=/Users/{{ ansible_user_id }}/.tmux.conf.local backup=yes
- hosts: all
roles:
- osxc.common-env