install .zshrc
This commit is contained in:
parent
5a88d0c83e
commit
9f3dca0a8d
3 changed files with 62 additions and 10 deletions
|
@ -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"
|
||||
|
|
Reference in a new issue