11 lines
197 B
YAML
11 lines
197 B
YAML
---
|
|
|
|
- name: Configure vim, by pushing the config
|
|
ansible.builtin.copy:
|
|
src: "{{ role_path }}/files/.vimrc"
|
|
dest: /home/max/.vimrc
|
|
owner: max
|
|
group: max
|
|
mode: u=rw,g=r,o-rwx
|
|
|