From 4bec0181b81a690b62ef40d4c12395fdf8257a29 Mon Sep 17 00:00:00 2001 From: AlejandroSuero Date: Fri, 29 Mar 2024 17:25:29 +0100 Subject: [PATCH] feat(zsh): added zsh autosuggestions and highlighting --- roles/zsh/tasks/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) 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"