From 68df1b107200fc508c05b191447e0c306bfde5ba Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Thu, 8 Jul 2021 10:17:17 +0200 Subject: [PATCH] Fix: force to copy .zshrc --- tasks/dotfiles.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index aae425b..3b2de0c 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -36,6 +36,15 @@ with_items: "{{ dotusers }}" when: prompt == 'zsh' +- name: dotfiles -- Copy local zshrc + template: + src: files/dotfiles/zshenv + dest: /home/{{ item.username }}/.config/zsh/.zshrc + owner: "{{ item.username }}" + group: "{{ item.group }}" + with_items: "{{ dotusers }}" + when: prompt == 'zsh' + - name: dotiles -- clone zsh syntax-hightlighting git: repo: https://github.com/zsh-users/zsh-syntax-highlighting.git