15 lines
319 B
YAML
15 lines
319 B
YAML
---
|
|
|
|
- name: Clear old Neovim config
|
|
ansible.builtin.file:
|
|
state: absent
|
|
path: /home/max/.config/nvim
|
|
|
|
- name: Configure neovim, by pushing the config
|
|
ansible.builtin.copy:
|
|
src: "{{ role_path }}/files/nvim_config/"
|
|
dest: /home/max/.config/nvim
|
|
owner: max
|
|
group: max
|
|
mode: u=rw,g=r,o-rwx
|