dotfiles/manjaro/arch_custom/roles (1)/manage_zsh/tasks/zsh-plugin.yml

34 lines
960 B
YAML

---
- name: Create zsh plugin directory
ansible.builtin.file:
path: "{{ user_home }}/.zsh"
state: directory
mode: '0755'
- name: Clone zsh-autosuggestions
ansible.builtin.git:
repo: https://github.com/zsh-users/zsh-autosuggestions.git
dest: "{{ user_home }}/.zsh/zsh-autosuggestions"
version: master
depth: 1
- name: Clone zsh-syntax-highlighting
ansible.builtin.git:
repo: https://github.com/zsh-users/zsh-syntax-highlighting.git
dest: "{{ user_home }}/.zsh/zsh-syntax-highlighting"
version: master
depth: 1
- name: Clone zsh-completions
ansible.builtin.git:
repo: https://github.com/zsh-users/zsh-completions.git
dest: "{{ user_home }}/.zsh/zsh-completions"
version: master
depth: 1
- name: Clone zsh-transient-prompt
ansible.builtin.git:
repo: https://github.com/olets/zsh-transient-prompt.git
dest: "{{ user_home }}/.zsh/zsh-transient-prompt"
version: main
depth: 1