dotfiles/playbooks/roles/zsh/tasks/main.yml
2022-05-25 22:51:17 -04:00

42 lines
816 B
YAML

---
- 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
- name: Symlink .zsh.d
file:
src: ~/.dotfiles/zsh/funcs
dest: ~/.zsh.d
state: link
- name: copy contents of bin
ansible.posix.synchronize:
src: ~/.dotfiles/bin/
dest: ~/bin
- name: copy contents of zsh/bin
ansible.posix.synchronize:
src: ~/.dotfiles/zsh/bin/
dest: ~/bin