dotfiles/playbooks/roles/zsh/tasks/main.yml
2019-10-11 09:27:31 -04:00

24 lines
471 B
YAML

---
- name: Get antibody install script
get_url:
url: https://git.io/antibody
dest: /tmp/get_antibody.sh
mode: 0755
- name: Install antibody
shell: /tmp/get_antibody.sh -b ~/bin
args:
creates: ~/bin/antibody
- name: Symlink zsh_plugins.txt
file:
src: ~/.dotfiles/zsh/zsh_plugins.txt
dest: ~/.zsh_plugins.txt
state: link
- name: Symlink zshrc
file:
src: ~/.dotfiles/zsh/zshrc
dest: ~/.zshrc
state: link
force: yes