Sostituzione di prepare con un playbook che viene lanciato sulla macchina locale.
This commit is contained in:
parent
23343af106
commit
813cf57d54
78 changed files with 885 additions and 70 deletions
18
roles/vim/tasks/configuration.yml
Normal file
18
roles/vim/tasks/configuration.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
# Configuring vim
|
||||
|
||||
- name: Linking main file
|
||||
ansible.builtin.file:
|
||||
src: "{{ dotfdir }}/vimrc"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.vimrc"
|
||||
state: link
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
||||
|
||||
- name: Linking main folder
|
||||
ansible.builtin.file:
|
||||
src: "{{ dotfdir }}/vim"
|
||||
dest: "{{ lookup('ansible.builtin.env', 'HOME' ) }}/.vim"
|
||||
state: link
|
||||
owner: syntaxerrormmm
|
||||
group: syntaxerrormmm
|
Loading…
Add table
Add a link
Reference in a new issue