dotfiles/playbooks/roles/zsh/tasks/main.yml
2019-10-11 22:18:23 -04:00

30 lines
599 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 starship.toml
file:
src: ~/.dotfiles/zsh/starship.toml
dest: ~/.config/starship.toml
state: link
- name: Symlink zshrc
file:
src: ~/.dotfiles/zsh/zshrc
dest: ~/.zshrc
state: link
force: yes