mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 21:32:13 +02:00
18 lines
393 B
YAML
18 lines
393 B
YAML
---
|
|
- name: Install Vifm (file manager for the terminal)
|
|
become: true
|
|
pacman:
|
|
name: vifm
|
|
state: latest
|
|
- name: Synchronizes the configuration for the unprivileged user
|
|
synchronize:
|
|
src: vifm
|
|
dest: /$HOME/.config
|
|
delete: true
|
|
- name: Synchronizes the configuration for the root user
|
|
become: true
|
|
synchronize:
|
|
src: vifm
|
|
dest: /root/.config
|
|
delete: true
|