dotfiles/playbooks/roles/zsh/tasks/main.yml
Anthony Cicchetti f9699f4499 Stuff
2019-10-15 12:25:45 -04:00

37 lines
736 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
- name: Symlink completions dir
file:
src: ~/.dotfiles/zsh/completions
dest: ~/.zshcompletions
state: link
force: yes