install .zshrc

This commit is contained in:
Pim Kunis 2022-11-26 17:33:21 +01:00
parent 5a88d0c83e
commit 9f3dca0a8d
3 changed files with 62 additions and 10 deletions

View file

@ -20,7 +20,11 @@
user:
name: "{{ ansible_user_id }}"
shell: /usr/bin/zsh
- name: Set git configuration
- name: Install .gitconfig
template:
src: "{{ role_path }}/templates/.gitconfig.j2"
dest: "/home/{{ ansible_user_id }}/.gitconfig"
- name: Install .zshrc
template:
src: "{{ role_path }}/templates/.zshrc.j2"
dest: "/home/{{ ansible_user_id }}/.zshrc"