17 lines
445 B
YAML
17 lines
445 B
YAML
---
|
|
# Installing antidote.
|
|
|
|
- name: Creating destination folder
|
|
ansible.builtin.file:
|
|
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.zsh/antidote"
|
|
state: directory
|
|
owner: syntaxerrormmm
|
|
group: syntaxerrormmm
|
|
mode: "0755"
|
|
|
|
- name: Installing antidote with git
|
|
ansible.builtin.git:
|
|
repo: "https://github.com/mattmc3/antidote.git"
|
|
dest: "{{ lookup('ansible.builtin.env','HOME' ) }}/.zsh/antidote"
|
|
depth: 1
|