33 lines
814 B
YAML
33 lines
814 B
YAML
---
|
|
- name: Configure oh my zsh, by pushing the config file
|
|
ansible.builtin.copy:
|
|
src: "{{ role_path }}/files/.zshrc"
|
|
dest: /home/max/.zshrc
|
|
owner: max
|
|
group: max
|
|
mode: u=rw,g=r,o-rwx
|
|
|
|
- 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
|
|
|
|
- name: Configure ranger, by pushing the config
|
|
ansible.builtin.copy:
|
|
src: "{{ role_path }}/files/ranger_config"
|
|
dest: /home/max/.config/ranger
|
|
owner: max
|
|
group: max
|
|
mode: u=rw,g=r,o-rwx
|
|
|
|
- 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
|