diff --git a/roles/zsh/tasks/main.yml b/roles/zsh/tasks/main.yml index 032c488..0e7842a 100644 --- a/roles/zsh/tasks/main.yml +++ b/roles/zsh/tasks/main.yml @@ -89,3 +89,13 @@ when: - zsh_os_config is defined - zsh_os_config.stat.exists + +- name: "ZSH | zsh-autosuggestions" + ansible.builtin.git: + repo: https://github.com/zsh-users/zsh-autosuggestions # noqa: latest + dest: "{{ ansible_user_dir }}/.oh-my-zsh/custom/plugins/zsh-autosuggestions" + +- name: "ZSH | zsh-syntax-highlighting" + ansible.builtin.git: + repo: https://github.com/zsh-users/zsh-syntax-highlighting # noqa: latest + dest: "{{ ansible_user_dir }}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting"