Files
vmn-ansible/roles/update_configs/tasks/main.yaml
T

40 lines
1000 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: Make sure ~/.config/ranger/scope.sh is executable
ansible.builtin.file:
path: /home/max/.config/ranger/scope.sh
owner: max
group: max
mode: u=rwx,g=rx,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